[
  {
    "path": ".gitignore",
    "content": "*.pyc"
  },
  {
    "path": "DBN.py",
    "content": "\"\"\"\n\"\"\"\nimport cPickle\nimport os\nimport sys\nimport time\nimport os.path as path\nimport copy\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\nfrom DeepLearningTutorials.code.mlp import HiddenLayer\nfrom DeepLearningTutorials.code.rbm import RBM\n\nfrom PIL import Image\n\nimport myparser\nfrom midi.utils import midiwrite\n\n\n# compute_test_value is 'off' by default, meaning this feature is inactive\ntheano.config.compute_test_value = 'off' # Use 'warn' to activate this feature\n\n# For switching between 32 and 64 bit systems, because Theano is a little silly\n# like that.\nNUMPY_DTYPE = numpy.float64\n\n# start-snippet-1\nclass AutoencodingDBN(object):\n    \"\"\"\n    An autoencoding Deep Belief Network, based on the classifying DBN in the\n    Theano tutorial.  (Most of the code is copied over.)\n    \"\"\"\n\n    def __init__(self, numpy_rng, theano_rng=None, n_ins=784,\n                 hidden_layers_sizes=[1000, 1000, 1000]):\n        \"\"\"This class is made to support a variable number of layers.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: numpy random number generator used to draw initial\n                    weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given one is\n                           generated based on a seed drawn from `rng`\n\n        :type n_ins: int\n        :param n_ins: dimension of the input to the DBN\n\n        :type hidden_layers_sizes: list of ints\n        :param hidden_layers_sizes: intermediate layers size, must contain\n                               at least one value\n\n        :type n_outs: int\n        :param n_outs: dimension of the output of the network\n        \"\"\"\n\n        self.sigmoid_layers = []\n        self.rbm_layers = []\n        self.params = []\n        self.n_layers = len(hidden_layers_sizes)\n        self.layer_sizes = hidden_layers_sizes\n\n        assert self.n_layers > 0\n\n        if not theano_rng:\n            theano_rng = RandomStreams(numpy_rng.randint(2 ** 30))\n\n        # allocate symbolic variables for the data\n        self.x = T.matrix('x')  # the data is presented as rasterized images\n        self.x_mask = T.matrix('x_mask')    # For partial information.\n\n        # end-snippet-1\n        # The DBN is an MLP, for which all weights of intermediate\n        # layers are shared with a different RBM.  We will first\n        # construct the DBN as a deep multilayer perceptron, and when\n        # constructing each sigmoidal layer we also construct an RBM\n        # that shares weights with that layer. During pretraining we\n        # will train these RBMs (which will lead to chainging the\n        # weights of the MLP as well) During finetuning we will finish\n        # training the DBN by doing stochastic gradient descent on the\n        # MLP.\n\n        for i in xrange(self.n_layers):\n            # construct the sigmoidal layer\n\n            # the size of the input is either the number of hidden\n            # units of the layer below or the input size if we are on\n            # the first layer\n            if i == 0:\n                input_size = n_ins\n            else:\n                input_size = hidden_layers_sizes[i - 1]\n\n            # the input to this layer is either the activation of the\n            # hidden layer below or the input of the DBN if you are on\n            # the first layer\n            if i == 0:\n                layer_input = self.x\n            else:\n                layer_input = self.sigmoid_layers[-1].output\n\n            sigmoid_layer = HiddenLayer(rng=numpy_rng,\n                                        input=layer_input,\n                                        n_in=input_size,\n                                        n_out=hidden_layers_sizes[i],\n                                        activation=T.nnet.sigmoid)\n\n            # add the layer to our list of layers\n            self.sigmoid_layers.append(sigmoid_layer)\n\n\n            # Construct an RBM that shared weights with this layer\n            rbm_layer = RBM(numpy_rng=numpy_rng,\n                            theano_rng=theano_rng,\n                            input=layer_input,\n                            n_visible=input_size,\n                            n_hidden=hidden_layers_sizes[i],\n                            W=sigmoid_layer.W,\n                            hbias=sigmoid_layer.b)\n            self.rbm_layers.append(rbm_layer)\n            self.params.extend(rbm_layer.params)\n\n        # And build the upside-down network.  This shares parameters with the\n        # forward network. Except the weights are transposed and stuff.\n\n        # The \"isolated\" layers let you run only the upside-down part of the\n        # network, for generation.  The non-isolated layers are connected to\n        # the forward, compressing part of the network, and are used for\n        # training.\n        reverse_input = self.sigmoid_layers[-1].output\n        self.isolated_reverse_input = theano.shared(\n            numpy.zeros([10, hidden_layers_sizes[-1]]))\n        isolated_input = self.isolated_reverse_input\n        self.reverse_layers = [None] * self.n_layers\n        self.isolated_reverse = [None] * self.n_layers\n        for i in reversed(xrange(self.n_layers)):    \n            if i == 0:\n                out_size = n_ins\n            else:\n                out_size = hidden_layers_sizes[i-1]\n            reverse_sigmoid = HiddenLayer(rng=numpy_rng,\n                input=reverse_input,\n                n_in=hidden_layers_sizes[i],\n                n_out=out_size,\n                W=self.sigmoid_layers[i].W.T,\n                b=self.rbm_layers[i].vbias,\n                activation=T.nnet.sigmoid\n            )\n            isolated_sigmoid = HiddenLayer(rng=numpy_rng,\n                input=isolated_input,\n                n_in=hidden_layers_sizes[i],\n                n_out=out_size,\n                W=self.sigmoid_layers[i].W.T,\n                b=self.rbm_layers[i].vbias,\n                activation=T.nnet.sigmoid\n            )\n            \n            reverse_input = reverse_sigmoid.output\n            isolated_input = isolated_sigmoid.output\n            self.reverse_layers[i] = reverse_sigmoid\n            self.isolated_reverse[i] = isolated_sigmoid\n\n\n        # The fine-tune cost is the reconstruction error of the entire net.\n        self.finetune_cost = ((self.x - self.reverse_layers[0].output)**2).sum()\n\n        # The cost for training the generative net - in this case, self.x is\n        # completely disconnected, and we feed a pattern into the reverse net.\n        self.generative_cost = ((self.x - self.isolated_reverse[0].output)**2).sum()\n\n        # The l1 cost is for generating constrained samples of the input.  (Aka\n        # harmonizing a melody.)  Given a melody in self.x and a mask\n        # self.x_mask of which parts of self.x actually matter, it computes the\n        # error between the generated sample and the melody.\n        self.l1_cost = (((self.x - self.isolated_reverse[0].output) * self.x_mask)**2).sum()\n\n    def dump_params(self, outLoc):\n        \"\"\"\n        Takes all of the weights, and stores them as numpy arrays.\n        This is so the params are portable between GPU machines and CPU machines.\n        To load the params, you need to call load_from_dump, which re-makes your\n        DBN.\n        \"\"\"\n        dump = {}\n        for layer in range(self.n_layers):\n            dump[(layer, 0)] = numpy.array(self.sigmoid_layers[layer].W.get_value())\n            dump[(layer, 1)] = numpy.array(self.sigmoid_layers[layer].b.get_value())\n            dump[(layer, 2)] = numpy.array(self.reverse_layers[layer].b.get_value())\n        cPickle.dump(dump, open(outLoc, 'wb'), protocol=cPickle.HIGHEST_PROTOCOL)\n\n    def pretraining_functions(self, train_set_x, batch_size, k):\n        '''Generates a list of functions, for performing one step of\n        gradient descent at a given layer. The function will require\n        as input the minibatch index, and to train an RBM you just\n        need to iterate, calling the corresponding function on all\n        minibatch indexes.\n\n        :type train_set_x: theano.tensor.TensorType\n        :param train_set_x: Shared var. that contains all datapoints used\n                            for training the RBM\n        :type batch_size: int\n        :param batch_size: size of a [mini]batch\n        :param k: number of Gibbs steps to do in CD-k / PCD-k\n\n        '''\n\n        # index to a [mini]batch\n        index = T.lscalar('index')  # index to a minibatch\n        learning_rate = T.scalar('lr')  # learning rate to use\n\n        # number of batches\n        n_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n        # begining of a batch, given `index`\n        batch_begin = index * batch_size\n        # ending of a batch given `index`\n        batch_end = batch_begin + batch_size\n\n        pretrain_fns = []\n        for rbm in self.rbm_layers:\n\n            # get the cost and the updates list\n            # using CD-k here (persisent=None) for training each RBM.\n            # TODO: change cost function to reconstruction error\n            cost, updates = rbm.get_cost_updates(learning_rate,\n                                                 persistent=None, k=k)\n\n            # compile the theano function\n            fn = theano.function(\n                inputs=[index, theano.Param(learning_rate, default=0.1)],\n                outputs=cost,\n                updates=updates,\n                givens={\n                    self.x: train_set_x[batch_begin:batch_end]\n                }\n            )\n            # append `fn` to the list of functions\n            pretrain_fns.append(fn)\n\n        return pretrain_fns\n\n    def build_finetune_functions(self, train_set_x, batch_size, learning_rate):\n        '''Generates a function `train` that implements one step of\n        finetuning, a function `validate` that computes the error on a\n        batch from the validation set, and a function `test` that\n        computes the error on a batch from the testing set\n\n        :type datasets: list of pairs of theano.tensor.TensorType\n        :param datasets: It is a list that contain all the datasets;\n                        the has to contain three pairs, `train`,\n                        `valid`, `test` in this order, where each pair\n                        is formed of two Theano variables, one for the\n                        datapoints, the other for the labels\n        :type batch_size: int\n        :param batch_size: size of a minibatch\n        :type learning_rate: float\n        :param learning_rate: learning rate used during finetune stage\n\n        '''\n\n        index = T.lscalar('index')  # index to a [mini]batch\n        n_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n\n        # compute the gradients with respect to the model parameters\n        gparams = T.grad(self.finetune_cost, self.params)\n\n        # compute list of fine-tuning updates\n        updates = []\n        for param, gparam in zip(self.params, gparams):\n            updates.append((param, param - gparam * learning_rate))\n\n        train_fn = theano.function(\n            inputs=[index],\n            outputs=self.finetune_cost,\n            updates=updates,\n            givens={\n                self.x: train_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n            }\n        )\n\n        test_score_i = theano.function(\n            [index],\n            self.finetune_cost,\n            givens={\n                self.x: train_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n            }\n        )\n\n        # Create a function that scans the entire test set\n        def test_score():\n            return [test_score_i(i) for i in xrange(n_batches)]\n\n        return train_fn, test_score\n\n\n    def build_generative_finetune_fns(self, train_set_outputs, train_set_labels,\n                                      batch_size, learning_rate):\n        index = T.lscalar('index')  # index to a [mini]batch\n        n_batches = train_set_outputs.get_value(borrow=True).shape[0] / batch_size\n\n        # compute the gradients with respect to the model parameters\n        # First, only one of the RBM biases is actually a parameter of the\n        # generative model, so we have to fix that.\n        gen_params = []\n        for i in range(self.n_layers):\n            gen_params.append(self.rbm_layers[i].vbias)\n            gen_params.append(self.rbm_layers[i].W)\n        gparams = T.grad(self.generative_cost, gen_params)\n\n        # compute list of fine-tuning updates\n        updates = []\n        for param, gparam in zip(gen_params, gparams):\n            updates.append((param, param - gparam * learning_rate))\n\n        train_fn = theano.function(\n            inputs=[index],\n            outputs=self.generative_cost,\n            updates=updates,\n            givens={\n                self.x: train_set_outputs[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.isolated_reverse[-1].input: train_set_labels[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n            }\n        )\n\n        test_score_i = theano.function(\n            [index],\n            self.generative_cost,\n            givens={\n                self.x: train_set_outputs[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.isolated_reverse[-1].input: train_set_labels[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n            }\n        )\n\n        # Create a function that scans the entire test set\n        def test_score():\n            return [test_score_i(i) for i in xrange(n_batches)]\n\n        return train_fn, test_score\n\n    def generate(self, top_level):\n        \"\"\"\n        Make a new piano roll, given top level values.  (Uses the backwards\n        section of the network to make a sample.)\n        \"\"\"\n        generator = theano.function(\n            [],\n            self.reverse_layers[0].output,\n            givens={\n                self.reverse_layers[-1].input: top_level\n            }\n        )\n        return generator()\n\n    def label(self, to_label, x_mask, learning_rate):\n        \"\"\"\n        Estimate top layer, given an incomplete layer 1.\n        x_mask represents which values of to_label are unknown.\n        \"\"\"\n        grad = T.grad(self.l1_cost, self.isolated_reverse_input)\n        # compute list of fine-tuning updates\n        updates = (self.isolated_reverse_input, \n            self.isolated_reverse_input - grad * learning_rate)\n\n        train_fn = theano.function(\n            inputs=[],\n            outputs=self.l1_cost,\n            updates=[updates],\n            givens={\n                self.x: to_label,\n                self.x_mask: x_mask,\n            }\n        )\n        return train_fn\n\n    def train_dbn(self, data_file, finetune_lr=0.01, pretraining_epochs=100,\n        pretrain_lr=0.05, k=1, training_epochs=1000, batch_size=10):\n\n        raw_x = cPickle.load(open(data_file, 'rb')).astype(dtype=NUMPY_DTYPE)\n        train_set_x = theano.shared(raw_x)\n        \n\n        # compute number of minibatches for training, validation and testing\n        n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n        print n_train_batches\n\n        # start-snippet-2\n        #########################\n        # PRETRAINING THE MODEL #\n        #########################\n        print '... getting the pretraining functions'\n        pretraining_fns = self.pretraining_functions(train_set_x=train_set_x,\n                                                    batch_size=batch_size,\n                                                    k=k)\n\n\n        print '... pre-training the model'\n        start_time = time.clock()\n        ## Pre-train layer-wise\n        for i in xrange(self.n_layers - 1):\n            # go through pretraining epochs\n            for epoch in xrange(pretraining_epochs):\n                # go through the training set\n                c = []\n                for batch_index in xrange(n_train_batches):\n                    c.append(pretraining_fns[i](index=batch_index,\n                                                lr=pretrain_lr))\n                print 'Pre-training layer %i, epoch %d, cost ' % (i, epoch),\n                print numpy.mean(c)\n\n        end_time = time.clock()\n        # end-snippet-2\n        print >> sys.stderr, ('The pretraining code for file ' +\n                              os.path.split(__file__)[1] +\n                              ' ran for %.2fm' % ((end_time - start_time) / 60.))\n\n        # If you'd like to try out different parameters for the fine-tuner only,\n        # you can cache the initial model state, so you don't have to pre-train\n        # every time.\n        cPickle.dump(self, open('initial-model.pickle', 'wb'), protocol=cPickle.HIGHEST_PROTOCOL)\n        ########################\n        # FINETUNING THE MODEL #\n        ########################\n\n        # get the training, validation and testing function for the model\n\n        print '... getting the finetuning functions'\n        use_autoencoder = False\n        if use_autoencoder:\n            train_fn, test_model = self.build_finetune_functions(\n                train_set_x=train_set_x,\n                batch_size=batch_size,\n                learning_rate=finetune_lr\n            )\n        else:\n            raw_labels = numpy.random.randint(2,\n                size=[raw_x.shape[0], self.layer_sizes[-1]])\\\n                .astype(dtype=numpy.float64)\n            labels = theano.shared(raw_labels)\n            train_fn, test_model = self.build_generative_finetune_fns(\n                train_set_outputs=train_set_x,\n                train_set_labels=labels,\n                batch_size=batch_size,\n                learning_rate=finetune_lr \n            )\n\n        print '... finetuning the model'\n        # early-stopping parameters\n        patience = 4 * n_train_batches  # look as this many examples regardless\n        patience_increase = 2.    # wait this much longer when a new best is\n                                  # found\n        improvement_threshold = 0.995  # a relative improvement of this much is\n                                       # considered significant\n        validation_frequency = min(n_train_batches, patience / 2)\n                                      # go through this many\n                                      # minibatches before checking the network\n                                      # on the validation set; in this case we\n                                      # check every epoch\n\n        best_validation_loss = numpy.inf\n        test_score = 0.\n        start_time = time.clock()\n\n        done_looping = False\n        epoch = 0\n\n        while (epoch < training_epochs) and (not done_looping):\n            epoch = epoch + 1\n            for minibatch_index in xrange(n_train_batches):\n\n                minibatch_avg_cost = train_fn(minibatch_index)\n                iter = (epoch - 1) * n_train_batches + minibatch_index\n\n                if (iter + 1) % validation_frequency == 0:\n\n                    validation_losses = test_model()\n                    this_validation_loss = numpy.mean(validation_losses)\n                    print(\n                        'epoch %i, minibatch %i/%i, validation error %f %%'\n                        % (\n                            epoch,\n                            minibatch_index + 1,\n                            n_train_batches,\n                            this_validation_loss * 100.\n                        )\n                    )\n\n                    # if we got the best validation score until now\n                    if this_validation_loss < best_validation_loss:\n\n                        #improve patience if loss improvement is good enough\n                        if (\n                            this_validation_loss < best_validation_loss *\n                            improvement_threshold\n                        ):\n                            patience = max(patience, iter * patience_increase)\n\n                        # save best validation score and iteration number\n                        best_validation_loss = this_validation_loss\n                        best_iter = iter\n\n                if patience <= iter:\n                    done_looping = True\n                    break\n\n        end_time = time.clock()\n        print(\n            (\n                'Optimization complete with best validation score of %f, '\n                'obtained at iteration %i, '\n            ) % (best_validation_loss, best_iter + 1)\n        )\n        print >> sys.stderr, ('The fine tuning code for file ' +\n                              os.path.split(__file__)[1] +\n                              ' ran for %.2fm' % ((end_time - start_time)\n                                                  / 60.))\n        self.dump_params('./my-model.pickle')\n\n    def sample(self, top_level=None, rootLoc='./', save=True, threshold=0.5,\n            filename='test.midi'):\n        \"\"\"\n        Generates a sample from the trained neural net.  top_level is a 10 x\n        [size of top layer] matrix whose rows contain values for the top\n        layer.  Most of the time, I only use the first row, but you can only\n        process data in increments of batch_size.\n        \"\"\"\n        if top_level is None:\n            top_level_size = self.layer_sizes[-1]\n            top_level = numpy.random.randint(2, size=[10, top_level_size])\\\n                .astype(dtype=NUMPY_DTYPE)\n        output = self.generate(top_level)\n        output = output.reshape([10, 88*64])\n        firstIm = output[0, :].reshape([88, 64])\n        # Makes a little picture of the piano roll.\n        outIm = Image.fromarray((firstIm*255).astype('uint8'))\n        outIm.save(path.join(rootLoc, 'test.png'))\n        if threshold is not None:\n            firstIm[firstIm > threshold] = 1\n            firstIm[firstIm <= threshold] = 0\n        if save:\n            midiwrite(path.join(rootLoc, filename), firstIm.T, r=(12, 109), dt=64)\n        return firstIm\n\n    def label_from_file(self, rootLoc, fileLoc, learn_rate, n_iters, threshold):\n        \"\"\"\n        Given a xml file at fileLoc, harmonizes the melody in the xml file, by\n        doing gradient descent on the top hidden layer of the network.  This\n        gives us an estimate of the top layer activations that might generate\n        the melody. We then run the network forwards to get the entire harmony\n        from the top level activations that we estimate.\n        \"\"\"\n        noteReader = myparser.LegatoNoteAdder(64)\n        myparser.read(fileLoc, noteReader.handle)\n        snippet = noteReader.mtx\n        mask = melody_blocker(snippet)\n\n        linear_snippet = snippet.reshape([88*64])\n        linear_mask = mask.reshape([88*64])\n        in_data = numpy.zeros([10, 88*64])\n        x_mask = numpy.zeros([10, 88*64])\n        for i in range(10):\n            in_data[i, :] = linear_snippet\n            x_mask[i, :] = linear_mask\n\n\n        # Do gradient descent to estimate the activations on layer 1.\n        new_vals = theano.shared(\n            value=numpy.random.sample([10, self.layer_sizes[-1]]),\n        )\n        f = theano.function(\n            inputs=[],\n            updates=[(self.isolated_reverse_input, new_vals)],\n        )\n        f()\n        trainer = self.label(in_data, x_mask, learn_rate)\n        for i in range(n_iters):\n            print trainer()\n\n        # Then, generate using it.\n        result = dbn.sample(self.isolated_reverse_input, rootLoc=rootLoc, save=False,\n            threshold=threshold)\n        # Add the melody back onto the snippet.\n        final = result * (1.0 - mask)\n        final = final + snippet\n        final[final > 0.5] = 1\n        midiwrite(path.join(rootLoc, 'test.midi'), final.T, r=(12, 109), dt=64)\n        return final\n\ndef melody_blocker(snippet):\n    \"\"\"\n    Makes a mask where anything above the top line of the snippet is 1.  Also\n    enforces empty space a major 2nd above and below the melody.  (This means\n    the optimizer will consider any note above the top line of the melody, or\n    too close to the melody, wrong.)\n    \"\"\"\n    envelope = numpy.copy(snippet)\n    _, length = snippet.shape\n    for i in range(length):\n        occupied = [x for x in range(88) if snippet[x, i] != 0]\n        if len(occupied) == 0:\n            continue\n        top = max(occupied)\n        envelope[top:, i] = 1\n        for pitch in occupied:\n            envelope[pitch-2:pitch+3, i] = 1\n    return envelope\n\ndef load_from_dump(inLoc):\n    \"\"\"\n    Loads data from dumped state (generated by dumped_params), and creates a\n    new DBN.\n    \"\"\"\n    dump = cPickle.load(open(inLoc, 'rb'))\n    # Get the number of layers.\n    max_layer = 0\n    for layer, _ in dump:\n        if layer > max_layer:\n            max_layer = layer\n    max_layer += 1\n    # Get the size of each layer.\n    layer_sizes = []\n    for layer in range(max_layer):\n        layer_sizes.append(len(dump[(layer, 1)]))\n    # For now, the size of the input is fixed at 88x64, but you can read that\n    # out of the dump, as well.\n    dbn = AutoencodingDBN(numpy_rng=numpy.random.RandomState(),\n        n_ins=88*64,\n        hidden_layers_sizes=layer_sizes)\n    for layer in range(max_layer):\n        dbn.sigmoid_layers[layer].W.set_value(dump[(layer, 0)])\n        dbn.sigmoid_layers[layer].b.set_value(dump[(layer, 1)])\n        dbn.reverse_layers[layer].b.set_value(dump[(layer, 2)])\n    return dbn\n\nif __name__ == '__main__':\n    if sys.argv[1] == 'train':\n        dbn = AutoencodingDBN(numpy_rng=numpy.random.RandomState(),\n            n_ins=88*64,\n            hidden_layers_sizes=[1024, 256, 64])\n        dbn.train_dbn('./joplin-data.pickle')\n        exit()\n    dbn = load_from_dump('./joplin-model.pickle')\n    import sys\n    if sys.argv[1] == 'sample':\n        dbn.sample(threshold=0.5)\n    elif sys.argv[1] == 'harmonize': \n        dbn.label_from_file(path.dirname(sys.argv[0]), './12-days.xml',\n            0.01, 500, 0.4)\n    else:\n        print \"invalid command\"\n"
  },
  {
    "path": "DeepLearningTutorials/.gitignore",
    "content": "code/*.pyc\ncode/*_plots\ncode/tmp*\ncode/midi\ncode/rnnslu\ndata/atis.*\ndata/mnist.pkl.gz\ndata/mnist_py3k.pkl.gz\ndata/Nottingham.zip\ndata/Nottingham\ndata/midi.zip\nhtml\n*.pyc\n*~\n*.swp\n"
  },
  {
    "path": "DeepLearningTutorials/.hgignore",
    "content": "syntax: glob\n*.pyc\n*.png\n*~\n"
  },
  {
    "path": "DeepLearningTutorials/.travis.yml",
    "content": "# After changing this file, check it on:\n# http://lint.travis-ci.org/\n\n#We can't get scipy installed with the python language\n#So we will use the system python from the c language.\nlanguage: c\n#language: python\n#python:\n#  - \"2.5\"\n#  - \"2.7\"\n#  - \"3.2\"\n# command to install dependencies\nbefore_install:\n#zlib1g-dev is needed to allow PIL to uncompress the dataset.\n  - sudo apt-get update\n  - sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev zip unzip zlibc libzip-dev libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev python-numpy python-scipy python-pip python-nose python-yaml pyflakes python-imaging\n\ninstall:\n#  - \"pip install -q numpy --use-mirrors\"\n# Use Pillow instead of PIL as it is better packaged\n#  - \"pip install -q Pillow --use-mirrors\"\n#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.\n#  - \"pip install -q scipy --use-mirrors\"\n  - \"sudo pip install --no-deps git+git://github.com/Theano/Theano.git\"\n\nenv:\n  - PART=\"test.py:test_logistic_sgd test.py:test_logistic_cg test.py:test_mlp test.py:test_convolutional_mlp test.py:test_dA\"\n  - PART=\"test.py:test_SdA\"\n  - PART=\"test.py:test_dbn\"\n  - PART=\"test.py:test_rbm test.py:test_rnnrbm\"\n  - PART=\"-e test.py\"\n\n#i7-2600K CPU @ 3.40GHz\n#166.572s   #8      test.test_rbm OK\n#155.114s   #7      test.test_dbn OK\n#152.365s   #9      test.test_rnnrbm OK\n#127.286s   #6      test.test_SdA OK\n#39.252s    #5      test.test_dA OK\n#27.56s     #4      test.test_convolutional_mlp OK\n#15.454s    #3      test.test_mlp OK\n#12.732s    #1      test.test_logistic_sgd OK\n#12.638s    #2      test.test_logistic_cg OK\n\n#i7-920\n#296.475s   #7      code.test.test_dbn OK\n#257.272s   #6      code.test.test_SdA OK\n#234.776s   #9      code.test.test_rnnrbm OK\n#233.896s   #8      code.test.test_rbm OK\n#65.737s    #5      code.test.test_dA OK\n#37.658s    #4      code.test.test_convolutional_mlp OK\n#24.172s    #3      code.test.test_mlp OK\n#20.401s    #1      code.test.test_logistic_sgd OK\n#17.546s    #2      code.test.test_logistic_cg OK\n\n# On Core2 duo E8500 with MRG\n#308.004s   #7      code.test.test_dbn OK\n#277.268s   #6      code.test.test_SdA OK\n#126.102s   #8      code.test.test_rbm OK\n#123.652s   #9      code.test.test_rnnrbm OK\n#77.101s    #5      code.test.test_dA OK\n#39.75s     #4      code.test.test_convolutional_mlp OK\n#30.406s    #3      code.test.test_mlp OK\n#21.132s    #2      code.test.test_logistic_cg OK\n#17.945s    #1      code.test.test_logistic_sgd OK\n\n# Unknown computer with older version of Theano\n#569.882s   #9      code.test.test_rbm OK\n#298.992s   #8      code.test.test_dbn OK\n#268.901s   #7      code.test.test_SdA OK\n#67.292s    #6      code.test.test_dA OK\n#27.485s    #4      code.test.test_mlp OK\n#26.204s    #5      code.test.test_convolutional_mlp OK\n#14.676s    #3      code.test.test_logistic_cg OK\n#10.66s     #2      code.test.test_logistic_sgd OK\n#5.795s     #1      code.hmc.test_hmc.test_hmc OK\n\nscript:\n  - cd data\n  - ./download.sh\n  - ls\n  - cd ../code\n  - pwd\n  - ls\n  - export THEANO_FLAGS=warn.ignore_bug_before=all,on_opt_error=raise,on_shape_error=raise\n  - python --version\n  - nosetests $PART\n\n"
  },
  {
    "path": "DeepLearningTutorials/README.rst",
    "content": "Deep Learning Tutorials\n=======================\n\nDeep Learning is a new area of Machine Learning research, which has been\nintroduced with the objective of moving Machine Learning closer to one of its\noriginal goals: Artificial Intelligence.  Deep Learning is about learning\nmultiple levels of representation and abstraction that help to make sense of\ndata such as images, sound, and text.  The tutorials presented here will\nintroduce you to some of the most important deep learning algorithms and will\nalso show you how to run them using Theano.  Theano is a python library that\nmakes writing deep learning models easy, and gives the option of training them\non a GPU.\n\nThe easiest way to follow the tutorials is to `browse them online\n<http://deeplearning.net/tutorial/>`_.\n\n`Main development <http://github.com/lisa-lab/DeepLearningTutorials>`_\nof this project.\n\n.. image:: https://secure.travis-ci.org/lisa-lab/DeepLearningTutorials.png\n   :target: http://travis-ci.org/lisa-lab/DeepLearningTutorials\n\nProject Layout\n--------------\n\nSubdirectories:\n\n- code - Python files corresponding to each tutorial\n- data - data and scripts to download data that is used by the tutorials\n- doc  - restructured text used by Sphinx to build the tutorial website\n- html - built automatically by doc/Makefile, contains tutorial website\n- issues_closed - issue tracking\n- issues_open - issue tracking\n- misc - administrative scripts\n\n\nBuild instructions\n------------------\n\nTo build the html version of the tutorials, install sphinx and run doc/Makefile\n"
  },
  {
    "path": "DeepLearningTutorials/__init__.py",
    "content": ""
  },
  {
    "path": "DeepLearningTutorials/code/DBN.py",
    "content": "\"\"\"\n\"\"\"\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\nfrom logistic_sgd import LogisticRegression, load_data\nfrom mlp import HiddenLayer\nfrom rbm import RBM\n\n\n# start-snippet-1\nclass DBN(object):\n    \"\"\"Deep Belief Network\n\n    A deep belief network is obtained by stacking several RBMs on top of each\n    other. The hidden layer of the RBM at layer `i` becomes the input of the\n    RBM at layer `i+1`. The first layer RBM gets as input the input of the\n    network, and the hidden layer of the last RBM represents the output. When\n    used for classification, the DBN is treated as a MLP, by adding a logistic\n    regression layer on top.\n    \"\"\"\n\n    def __init__(self, numpy_rng, theano_rng=None, n_ins=784,\n                 hidden_layers_sizes=[500, 500], n_outs=10):\n        \"\"\"This class is made to support a variable number of layers.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: numpy random number generator used to draw initial\n                    weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given one is\n                           generated based on a seed drawn from `rng`\n\n        :type n_ins: int\n        :param n_ins: dimension of the input to the DBN\n\n        :type hidden_layers_sizes: list of ints\n        :param hidden_layers_sizes: intermediate layers size, must contain\n                               at least one value\n\n        :type n_outs: int\n        :param n_outs: dimension of the output of the network\n        \"\"\"\n\n        self.sigmoid_layers = []\n        self.rbm_layers = []\n        self.params = []\n        self.n_layers = len(hidden_layers_sizes)\n\n        assert self.n_layers > 0\n\n        if not theano_rng:\n            theano_rng = RandomStreams(numpy_rng.randint(2 ** 30))\n\n        # allocate symbolic variables for the data\n        self.x = T.matrix('x')  # the data is presented as rasterized images\n        self.y = T.ivector('y')  # the labels are presented as 1D vector\n                                 # of [int] labels\n        # end-snippet-1\n        # The DBN is an MLP, for which all weights of intermediate\n        # layers are shared with a different RBM.  We will first\n        # construct the DBN as a deep multilayer perceptron, and when\n        # constructing each sigmoidal layer we also construct an RBM\n        # that shares weights with that layer. During pretraining we\n        # will train these RBMs (which will lead to chainging the\n        # weights of the MLP as well) During finetuning we will finish\n        # training the DBN by doing stochastic gradient descent on the\n        # MLP.\n\n        for i in xrange(self.n_layers):\n            # construct the sigmoidal layer\n\n            # the size of the input is either the number of hidden\n            # units of the layer below or the input size if we are on\n            # the first layer\n            if i == 0:\n                input_size = n_ins\n            else:\n                input_size = hidden_layers_sizes[i - 1]\n\n            # the input to this layer is either the activation of the\n            # hidden layer below or the input of the DBN if you are on\n            # the first layer\n            if i == 0:\n                layer_input = self.x\n            else:\n                layer_input = self.sigmoid_layers[-1].output\n\n            sigmoid_layer = HiddenLayer(rng=numpy_rng,\n                                        input=layer_input,\n                                        n_in=input_size,\n                                        n_out=hidden_layers_sizes[i],\n                                        activation=T.nnet.sigmoid)\n\n            # add the layer to our list of layers\n            self.sigmoid_layers.append(sigmoid_layer)\n\n            # its arguably a philosophical question...  but we are\n            # going to only declare that the parameters of the\n            # sigmoid_layers are parameters of the DBN. The visible\n            # biases in the RBM are parameters of those RBMs, but not\n            # of the DBN.\n            self.params.extend(sigmoid_layer.params)\n\n            # Construct an RBM that shared weights with this layer\n            rbm_layer = RBM(numpy_rng=numpy_rng,\n                            theano_rng=theano_rng,\n                            input=layer_input,\n                            n_visible=input_size,\n                            n_hidden=hidden_layers_sizes[i],\n                            W=sigmoid_layer.W,\n                            hbias=sigmoid_layer.b)\n            self.rbm_layers.append(rbm_layer)\n\n        # We now need to add a logistic layer on top of the MLP\n        self.logLayer = LogisticRegression(\n            input=self.sigmoid_layers[-1].output,\n            n_in=hidden_layers_sizes[-1],\n            n_out=n_outs)\n        self.params.extend(self.logLayer.params)\n\n        # compute the cost for second phase of training, defined as the\n        # negative log likelihood of the logistic regression (output) layer\n        self.finetune_cost = self.logLayer.negative_log_likelihood(self.y)\n\n        # compute the gradients with respect to the model parameters\n        # symbolic variable that points to the number of errors made on the\n        # minibatch given by self.x and self.y\n        self.errors = self.logLayer.errors(self.y)\n\n    def pretraining_functions(self, train_set_x, batch_size, k):\n        '''Generates a list of functions, for performing one step of\n        gradient descent at a given layer. The function will require\n        as input the minibatch index, and to train an RBM you just\n        need to iterate, calling the corresponding function on all\n        minibatch indexes.\n\n        :type train_set_x: theano.tensor.TensorType\n        :param train_set_x: Shared var. that contains all datapoints used\n                            for training the RBM\n        :type batch_size: int\n        :param batch_size: size of a [mini]batch\n        :param k: number of Gibbs steps to do in CD-k / PCD-k\n\n        '''\n\n        # index to a [mini]batch\n        index = T.lscalar('index')  # index to a minibatch\n        learning_rate = T.scalar('lr')  # learning rate to use\n\n        # number of batches\n        n_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n        # begining of a batch, given `index`\n        batch_begin = index * batch_size\n        # ending of a batch given `index`\n        batch_end = batch_begin + batch_size\n\n        pretrain_fns = []\n        for rbm in self.rbm_layers:\n\n            # get the cost and the updates list\n            # using CD-k here (persisent=None) for training each RBM.\n            # TODO: change cost function to reconstruction error\n            cost, updates = rbm.get_cost_updates(learning_rate,\n                                                 persistent=None, k=k)\n\n            # compile the theano function\n            fn = theano.function(\n                inputs=[index, theano.Param(learning_rate, default=0.1)],\n                outputs=cost,\n                updates=updates,\n                givens={\n                    self.x: train_set_x[batch_begin:batch_end]\n                }\n            )\n            # append `fn` to the list of functions\n            pretrain_fns.append(fn)\n\n        return pretrain_fns\n\n    def build_finetune_functions(self, datasets, batch_size, learning_rate):\n        '''Generates a function `train` that implements one step of\n        finetuning, a function `validate` that computes the error on a\n        batch from the validation set, and a function `test` that\n        computes the error on a batch from the testing set\n\n        :type datasets: list of pairs of theano.tensor.TensorType\n        :param datasets: It is a list that contain all the datasets;\n                        the has to contain three pairs, `train`,\n                        `valid`, `test` in this order, where each pair\n                        is formed of two Theano variables, one for the\n                        datapoints, the other for the labels\n        :type batch_size: int\n        :param batch_size: size of a minibatch\n        :type learning_rate: float\n        :param learning_rate: learning rate used during finetune stage\n\n        '''\n\n        (train_set_x, train_set_y) = datasets[0]\n        (valid_set_x, valid_set_y) = datasets[1]\n        (test_set_x, test_set_y) = datasets[2]\n\n        # compute number of minibatches for training, validation and testing\n        n_valid_batches = valid_set_x.get_value(borrow=True).shape[0]\n        n_valid_batches /= batch_size\n        n_test_batches = test_set_x.get_value(borrow=True).shape[0]\n        n_test_batches /= batch_size\n\n        index = T.lscalar('index')  # index to a [mini]batch\n\n        # compute the gradients with respect to the model parameters\n        gparams = T.grad(self.finetune_cost, self.params)\n\n        # compute list of fine-tuning updates\n        updates = []\n        for param, gparam in zip(self.params, gparams):\n            updates.append((param, param - gparam * learning_rate))\n\n        train_fn = theano.function(\n            inputs=[index],\n            outputs=self.finetune_cost,\n            updates=updates,\n            givens={\n                self.x: train_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: train_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            }\n        )\n\n        test_score_i = theano.function(\n            [index],\n            self.errors,\n            givens={\n                self.x: test_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: test_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            }\n        )\n\n        valid_score_i = theano.function(\n            [index],\n            self.errors,\n            givens={\n                self.x: valid_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: valid_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            }\n        )\n\n        # Create a function that scans the entire validation set\n        def valid_score():\n            return [valid_score_i(i) for i in xrange(n_valid_batches)]\n\n        # Create a function that scans the entire test set\n        def test_score():\n            return [test_score_i(i) for i in xrange(n_test_batches)]\n\n        return train_fn, valid_score, test_score\n\n\ndef test_DBN(finetune_lr=0.1, pretraining_epochs=100,\n             pretrain_lr=0.01, k=1, training_epochs=1000,\n             dataset='mnist.pkl.gz', batch_size=10):\n    \"\"\"\n    Demonstrates how to train and test a Deep Belief Network.\n\n    This is demonstrated on MNIST.\n\n    :type finetune_lr: float\n    :param finetune_lr: learning rate used in the finetune stage\n    :type pretraining_epochs: int\n    :param pretraining_epochs: number of epoch to do pretraining\n    :type pretrain_lr: float\n    :param pretrain_lr: learning rate to be used during pre-training\n    :type k: int\n    :param k: number of Gibbs steps in CD/PCD\n    :type training_epochs: int\n    :param training_epochs: maximal number of iterations ot run the optimizer\n    :type dataset: string\n    :param dataset: path the the pickled dataset\n    :type batch_size: int\n    :param batch_size: the size of a minibatch\n    \"\"\"\n\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    # numpy random generator\n    numpy_rng = numpy.random.RandomState(123)\n    print '... building the model'\n    # construct the Deep Belief Network\n    dbn = DBN(numpy_rng=numpy_rng, n_ins=28 * 28,\n              hidden_layers_sizes=[1000, 1000, 1000],\n              n_outs=10)\n\n    # start-snippet-2\n    #########################\n    # PRETRAINING THE MODEL #\n    #########################\n    print '... getting the pretraining functions'\n    pretraining_fns = dbn.pretraining_functions(train_set_x=train_set_x,\n                                                batch_size=batch_size,\n                                                k=k)\n\n    print '... pre-training the model'\n    start_time = time.clock()\n    ## Pre-train layer-wise\n    for i in xrange(dbn.n_layers):\n        # go through pretraining epochs\n        for epoch in xrange(pretraining_epochs):\n            # go through the training set\n            c = []\n            for batch_index in xrange(n_train_batches):\n                c.append(pretraining_fns[i](index=batch_index,\n                                            lr=pretrain_lr))\n            print 'Pre-training layer %i, epoch %d, cost ' % (i, epoch),\n            print numpy.mean(c)\n\n    end_time = time.clock()\n    # end-snippet-2\n    print >> sys.stderr, ('The pretraining code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time) / 60.))\n    ########################\n    # FINETUNING THE MODEL #\n    ########################\n\n    # get the training, validation and testing function for the model\n    print '... getting the finetuning functions'\n    train_fn, validate_model, test_model = dbn.build_finetune_functions(\n        datasets=datasets,\n        batch_size=batch_size,\n        learning_rate=finetune_lr\n    )\n\n    print '... finetuning the model'\n    # early-stopping parameters\n    patience = 4 * n_train_batches  # look as this many examples regardless\n    patience_increase = 2.    # wait this much longer when a new best is\n                              # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                   # considered significant\n    validation_frequency = min(n_train_batches, patience / 2)\n                                  # go through this many\n                                  # minibatches before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_validation_loss = numpy.inf\n    test_score = 0.\n    start_time = time.clock()\n\n    done_looping = False\n    epoch = 0\n\n    while (epoch < training_epochs) and (not done_looping):\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n\n            minibatch_avg_cost = train_fn(minibatch_index)\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n\n            if (iter + 1) % validation_frequency == 0:\n\n                validation_losses = validate_model()\n                this_validation_loss = numpy.mean(validation_losses)\n                print(\n                    'epoch %i, minibatch %i/%i, validation error %f %%'\n                    % (\n                        epoch,\n                        minibatch_index + 1,\n                        n_train_batches,\n                        this_validation_loss * 100.\n                    )\n                )\n\n                # if we got the best validation score until now\n                if this_validation_loss < best_validation_loss:\n\n                    #improve patience if loss improvement is good enough\n                    if (\n                        this_validation_loss < best_validation_loss *\n                        improvement_threshold\n                    ):\n                        patience = max(patience, iter * patience_increase)\n\n                    # save best validation score and iteration number\n                    best_validation_loss = this_validation_loss\n                    best_iter = iter\n\n                    # test it on the test set\n                    test_losses = test_model()\n                    test_score = numpy.mean(test_losses)\n                    print(('     epoch %i, minibatch %i/%i, test error of '\n                           'best model %f %%') %\n                          (epoch, minibatch_index + 1, n_train_batches,\n                           test_score * 100.))\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    end_time = time.clock()\n    print(\n        (\n            'Optimization complete with best validation score of %f %%, '\n            'obtained at iteration %i, '\n            'with test performance %f %%'\n        ) % (best_validation_loss * 100., best_iter + 1, test_score * 100.)\n    )\n    print >> sys.stderr, ('The fine tuning code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time)\n                                              / 60.))\n\n\nif __name__ == '__main__':\n    test_DBN()\n"
  },
  {
    "path": "DeepLearningTutorials/code/SdA.py",
    "content": "\"\"\"\n This tutorial introduces stacked denoising auto-encoders (SdA) using Theano.\n\n Denoising autoencoders are the building blocks for SdA.\n They are based on auto-encoders as the ones used in Bengio et al. 2007.\n An autoencoder takes an input x and first maps it to a hidden representation\n y = f_{\\theta}(x) = s(Wx+b), parameterized by \\theta={W,b}. The resulting\n latent representation y is then mapped back to a \"reconstructed\" vector\n z \\in [0,1]^d in input space z = g_{\\theta'}(y) = s(W'y + b').  The weight\n matrix W' can optionally be constrained such that W' = W^T, in which case\n the autoencoder is said to have tied weights. The network is trained such\n that to minimize the reconstruction error (the error between x and z).\n\n For the denosing autoencoder, during training, first x is corrupted into\n \\tilde{x}, where \\tilde{x} is a partially destroyed version of x by means\n of a stochastic mapping. Afterwards y is computed as before (using\n \\tilde{x}), y = s(W\\tilde{x} + b) and z as s(W'y + b'). The reconstruction\n error is now measured between z and the uncorrupted input x, which is\n computed as the cross-entropy :\n      - \\sum_{k=1}^d[ x_k \\log z_k + (1-x_k) \\log( 1-z_k)]\n\n\n References :\n   - P. Vincent, H. Larochelle, Y. Bengio, P.A. Manzagol: Extracting and\n   Composing Robust Features with Denoising Autoencoders, ICML'08, 1096-1103,\n   2008\n   - Y. Bengio, P. Lamblin, D. Popovici, H. Larochelle: Greedy Layer-Wise\n   Training of Deep Networks, Advances in Neural Information Processing\n   Systems 19, 2007\n\n\"\"\"\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\nfrom logistic_sgd import LogisticRegression, load_data\nfrom mlp import HiddenLayer\nfrom dA import dA\n\n\n# start-snippet-1\nclass SdA(object):\n    \"\"\"Stacked denoising auto-encoder class (SdA)\n\n    A stacked denoising autoencoder model is obtained by stacking several\n    dAs. The hidden layer of the dA at layer `i` becomes the input of\n    the dA at layer `i+1`. The first layer dA gets as input the input of\n    the SdA, and the hidden layer of the last dA represents the output.\n    Note that after pretraining, the SdA is dealt with as a normal MLP,\n    the dAs are only used to initialize the weights.\n    \"\"\"\n\n    def __init__(\n        self,\n        numpy_rng,\n        theano_rng=None,\n        n_ins=784,\n        hidden_layers_sizes=[500, 500],\n        n_outs=10,\n        corruption_levels=[0.1, 0.1]\n    ):\n        \"\"\" This class is made to support a variable number of layers.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: numpy random number generator used to draw initial\n                    weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given one is\n                           generated based on a seed drawn from `rng`\n\n        :type n_ins: int\n        :param n_ins: dimension of the input to the sdA\n\n        :type n_layers_sizes: list of ints\n        :param n_layers_sizes: intermediate layers size, must contain\n                               at least one value\n\n        :type n_outs: int\n        :param n_outs: dimension of the output of the network\n\n        :type corruption_levels: list of float\n        :param corruption_levels: amount of corruption to use for each\n                                  layer\n        \"\"\"\n\n        self.sigmoid_layers = []\n        self.dA_layers = []\n        self.params = []\n        self.n_layers = len(hidden_layers_sizes)\n\n        assert self.n_layers > 0\n\n        if not theano_rng:\n            theano_rng = RandomStreams(numpy_rng.randint(2 ** 30))\n        # allocate symbolic variables for the data\n        self.x = T.matrix('x')  # the data is presented as rasterized images\n        self.y = T.ivector('y')  # the labels are presented as 1D vector of\n                                 # [int] labels\n        # end-snippet-1\n\n        # The SdA is an MLP, for which all weights of intermediate layers\n        # are shared with a different denoising autoencoders\n        # We will first construct the SdA as a deep multilayer perceptron,\n        # and when constructing each sigmoidal layer we also construct a\n        # denoising autoencoder that shares weights with that layer\n        # During pretraining we will train these autoencoders (which will\n        # lead to chainging the weights of the MLP as well)\n        # During finetunining we will finish training the SdA by doing\n        # stochastich gradient descent on the MLP\n\n        # start-snippet-2\n        for i in xrange(self.n_layers):\n            # construct the sigmoidal layer\n\n            # the size of the input is either the number of hidden units of\n            # the layer below or the input size if we are on the first layer\n            if i == 0:\n                input_size = n_ins\n            else:\n                input_size = hidden_layers_sizes[i - 1]\n\n            # the input to this layer is either the activation of the hidden\n            # layer below or the input of the SdA if you are on the first\n            # layer\n            if i == 0:\n                layer_input = self.x\n            else:\n                layer_input = self.sigmoid_layers[-1].output\n\n            sigmoid_layer = HiddenLayer(rng=numpy_rng,\n                                        input=layer_input,\n                                        n_in=input_size,\n                                        n_out=hidden_layers_sizes[i],\n                                        activation=T.nnet.sigmoid)\n            # add the layer to our list of layers\n            self.sigmoid_layers.append(sigmoid_layer)\n            # its arguably a philosophical question...\n            # but we are going to only declare that the parameters of the\n            # sigmoid_layers are parameters of the StackedDAA\n            # the visible biases in the dA are parameters of those\n            # dA, but not the SdA\n            self.params.extend(sigmoid_layer.params)\n\n            # Construct a denoising autoencoder that shared weights with this\n            # layer\n            dA_layer = dA(numpy_rng=numpy_rng,\n                          theano_rng=theano_rng,\n                          input=layer_input,\n                          n_visible=input_size,\n                          n_hidden=hidden_layers_sizes[i],\n                          W=sigmoid_layer.W,\n                          bhid=sigmoid_layer.b)\n            self.dA_layers.append(dA_layer)\n        # end-snippet-2\n        # We now need to add a logistic layer on top of the MLP\n        self.logLayer = LogisticRegression(\n            input=self.sigmoid_layers[-1].output,\n            n_in=hidden_layers_sizes[-1],\n            n_out=n_outs\n        )\n\n        self.params.extend(self.logLayer.params)\n        # construct a function that implements one step of finetunining\n\n        # compute the cost for second phase of training,\n        # defined as the negative log likelihood\n        self.finetune_cost = self.logLayer.negative_log_likelihood(self.y)\n        # compute the gradients with respect to the model parameters\n        # symbolic variable that points to the number of errors made on the\n        # minibatch given by self.x and self.y\n        self.errors = self.logLayer.errors(self.y)\n\n    def pretraining_functions(self, train_set_x, batch_size):\n        ''' Generates a list of functions, each of them implementing one\n        step in trainnig the dA corresponding to the layer with same index.\n        The function will require as input the minibatch index, and to train\n        a dA you just need to iterate, calling the corresponding function on\n        all minibatch indexes.\n\n        :type train_set_x: theano.tensor.TensorType\n        :param train_set_x: Shared variable that contains all datapoints used\n                            for training the dA\n\n        :type batch_size: int\n        :param batch_size: size of a [mini]batch\n\n        :type learning_rate: float\n        :param learning_rate: learning rate used during training for any of\n                              the dA layers\n        '''\n\n        # index to a [mini]batch\n        index = T.lscalar('index')  # index to a minibatch\n        corruption_level = T.scalar('corruption')  # % of corruption to use\n        learning_rate = T.scalar('lr')  # learning rate to use\n        # begining of a batch, given `index`\n        batch_begin = index * batch_size\n        # ending of a batch given `index`\n        batch_end = batch_begin + batch_size\n\n        pretrain_fns = []\n        for dA in self.dA_layers:\n            # get the cost and the updates list\n            cost, updates = dA.get_cost_updates(corruption_level,\n                                                learning_rate)\n            # compile the theano function\n            fn = theano.function(\n                inputs=[\n                    index,\n                    theano.Param(corruption_level, default=0.2),\n                    theano.Param(learning_rate, default=0.1)\n                ],\n                outputs=cost,\n                updates=updates,\n                givens={\n                    self.x: train_set_x[batch_begin: batch_end]\n                }\n            )\n            # append `fn` to the list of functions\n            pretrain_fns.append(fn)\n\n        return pretrain_fns\n\n    def build_finetune_functions(self, datasets, batch_size, learning_rate):\n        '''Generates a function `train` that implements one step of\n        finetuning, a function `validate` that computes the error on\n        a batch from the validation set, and a function `test` that\n        computes the error on a batch from the testing set\n\n        :type datasets: list of pairs of theano.tensor.TensorType\n        :param datasets: It is a list that contain all the datasets;\n                         the has to contain three pairs, `train`,\n                         `valid`, `test` in this order, where each pair\n                         is formed of two Theano variables, one for the\n                         datapoints, the other for the labels\n\n        :type batch_size: int\n        :param batch_size: size of a minibatch\n\n        :type learning_rate: float\n        :param learning_rate: learning rate used during finetune stage\n        '''\n\n        (train_set_x, train_set_y) = datasets[0]\n        (valid_set_x, valid_set_y) = datasets[1]\n        (test_set_x, test_set_y) = datasets[2]\n\n        # compute number of minibatches for training, validation and testing\n        n_valid_batches = valid_set_x.get_value(borrow=True).shape[0]\n        n_valid_batches /= batch_size\n        n_test_batches = test_set_x.get_value(borrow=True).shape[0]\n        n_test_batches /= batch_size\n\n        index = T.lscalar('index')  # index to a [mini]batch\n\n        # compute the gradients with respect to the model parameters\n        gparams = T.grad(self.finetune_cost, self.params)\n\n        # compute list of fine-tuning updates\n        updates = [\n            (param, param - gparam * learning_rate)\n            for param, gparam in zip(self.params, gparams)\n        ]\n\n        train_fn = theano.function(\n            inputs=[index],\n            outputs=self.finetune_cost,\n            updates=updates,\n            givens={\n                self.x: train_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: train_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            },\n            name='train'\n        )\n\n        test_score_i = theano.function(\n            [index],\n            self.errors,\n            givens={\n                self.x: test_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: test_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            },\n            name='test'\n        )\n\n        valid_score_i = theano.function(\n            [index],\n            self.errors,\n            givens={\n                self.x: valid_set_x[\n                    index * batch_size: (index + 1) * batch_size\n                ],\n                self.y: valid_set_y[\n                    index * batch_size: (index + 1) * batch_size\n                ]\n            },\n            name='valid'\n        )\n\n        # Create a function that scans the entire validation set\n        def valid_score():\n            return [valid_score_i(i) for i in xrange(n_valid_batches)]\n\n        # Create a function that scans the entire test set\n        def test_score():\n            return [test_score_i(i) for i in xrange(n_test_batches)]\n\n        return train_fn, valid_score, test_score\n\n\ndef test_SdA(finetune_lr=0.1, pretraining_epochs=15,\n             pretrain_lr=0.001, training_epochs=1000,\n             dataset='mnist.pkl.gz', batch_size=1):\n    \"\"\"\n    Demonstrates how to train and test a stochastic denoising autoencoder.\n\n    This is demonstrated on MNIST.\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used in the finetune stage\n    (factor for the stochastic gradient)\n\n    :type pretraining_epochs: int\n    :param pretraining_epochs: number of epoch to do pretraining\n\n    :type pretrain_lr: float\n    :param pretrain_lr: learning rate to be used during pre-training\n\n    :type n_iter: int\n    :param n_iter: maximal number of iterations ot run the optimizer\n\n    :type dataset: string\n    :param dataset: path the the pickled dataset\n\n    \"\"\"\n\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0]\n    n_train_batches /= batch_size\n\n    # numpy random generator\n    # start-snippet-3\n    numpy_rng = numpy.random.RandomState(89677)\n    print '... building the model'\n    # construct the stacked denoising autoencoder class\n    sda = SdA(\n        numpy_rng=numpy_rng,\n        n_ins=28 * 28,\n        hidden_layers_sizes=[1000, 1000, 1000],\n        n_outs=10\n    )\n    # end-snippet-3 start-snippet-4\n    #########################\n    # PRETRAINING THE MODEL #\n    #########################\n    print '... getting the pretraining functions'\n    pretraining_fns = sda.pretraining_functions(train_set_x=train_set_x,\n                                                batch_size=batch_size)\n\n    print '... pre-training the model'\n    start_time = time.clock()\n    ## Pre-train layer-wise\n    corruption_levels = [.1, .2, .3]\n    for i in xrange(sda.n_layers):\n        # go through pretraining epochs\n        for epoch in xrange(pretraining_epochs):\n            # go through the training set\n            c = []\n            for batch_index in xrange(n_train_batches):\n                c.append(pretraining_fns[i](index=batch_index,\n                         corruption=corruption_levels[i],\n                         lr=pretrain_lr))\n            print 'Pre-training layer %i, epoch %d, cost ' % (i, epoch),\n            print numpy.mean(c)\n\n    end_time = time.clock()\n\n    print >> sys.stderr, ('The pretraining code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time) / 60.))\n    # end-snippet-4\n    ########################\n    # FINETUNING THE MODEL #\n    ########################\n\n    # get the training, validation and testing function for the model\n    print '... getting the finetuning functions'\n    train_fn, validate_model, test_model = sda.build_finetune_functions(\n        datasets=datasets,\n        batch_size=batch_size,\n        learning_rate=finetune_lr\n    )\n\n    print '... finetunning the model'\n    # early-stopping parameters\n    patience = 10 * n_train_batches  # look as this many examples regardless\n    patience_increase = 2.  # wait this much longer when a new best is\n                            # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                   # considered significant\n    validation_frequency = min(n_train_batches, patience / 2)\n                                  # go through this many\n                                  # minibatche before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_validation_loss = numpy.inf\n    test_score = 0.\n    start_time = time.clock()\n\n    done_looping = False\n    epoch = 0\n\n    while (epoch < training_epochs) and (not done_looping):\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n            minibatch_avg_cost = train_fn(minibatch_index)\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n\n            if (iter + 1) % validation_frequency == 0:\n                validation_losses = validate_model()\n                this_validation_loss = numpy.mean(validation_losses)\n                print('epoch %i, minibatch %i/%i, validation error %f %%' %\n                      (epoch, minibatch_index + 1, n_train_batches,\n                       this_validation_loss * 100.))\n\n                # if we got the best validation score until now\n                if this_validation_loss < best_validation_loss:\n\n                    #improve patience if loss improvement is good enough\n                    if (\n                        this_validation_loss < best_validation_loss *\n                        improvement_threshold\n                    ):\n                        patience = max(patience, iter * patience_increase)\n\n                    # save best validation score and iteration number\n                    best_validation_loss = this_validation_loss\n                    best_iter = iter\n\n                    # test it on the test set\n                    test_losses = test_model()\n                    test_score = numpy.mean(test_losses)\n                    print(('     epoch %i, minibatch %i/%i, test error of '\n                           'best model %f %%') %\n                          (epoch, minibatch_index + 1, n_train_batches,\n                           test_score * 100.))\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    end_time = time.clock()\n    print(\n        (\n            'Optimization complete with best validation score of %f %%, '\n            'on iteration %i, '\n            'with test performance %f %%'\n        )\n        % (best_validation_loss * 100., best_iter + 1, test_score * 100.)\n    )\n    print >> sys.stderr, ('The training code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time) / 60.))\n\n\nif __name__ == '__main__':\n    test_SdA()\n"
  },
  {
    "path": "DeepLearningTutorials/code/__init__.py",
    "content": ""
  },
  {
    "path": "DeepLearningTutorials/code/cA.py",
    "content": "\"\"\"This tutorial introduces Contractive auto-encoders (cA) using Theano.\n\n They are based on auto-encoders as the ones used in Bengio et\n al. 2007.  An autoencoder takes an input x and first maps it to a\n hidden representation y = f_{\\theta}(x) = s(Wx+b), parameterized by\n \\theta={W,b}. The resulting latent representation y is then mapped\n back to a \"reconstructed\" vector z \\in [0,1]^d in input space z =\n g_{\\theta'}(y) = s(W'y + b').  The weight matrix W' can optionally be\n constrained such that W' = W^T, in which case the autoencoder is said\n to have tied weights. The network is trained such that to minimize\n the reconstruction error (the error between x and z).  Adding the\n squared Frobenius norm of the Jacobian of the hidden mapping h with\n respect to the visible units yields the contractive auto-encoder:\n\n      - \\sum_{k=1}^d[ x_k \\log z_k + (1-x_k) \\log( 1-z_k)]\n      + \\| \\frac{\\partial h(x)}{\\partial x} \\|^2\n\n References :\n   - S. Rifai, P. Vincent, X. Muller, X. Glorot, Y. Bengio: Contractive\n   Auto-Encoders: Explicit Invariance During Feature Extraction, ICML-11\n\n   - S. Rifai, X. Muller, X. Glorot, G. Mesnil, Y. Bengio, and Pascal\n     Vincent. Learning invariant features through local space\n     contraction. Technical Report 1360, Universite de Montreal\n\n   - Y. Bengio, P. Lamblin, D. Popovici, H. Larochelle: Greedy Layer-Wise\n   Training of Deep Networks, Advances in Neural Information Processing\n   Systems 19, 2007\n\n\"\"\"\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\n\n\nfrom logistic_sgd import load_data\nfrom utils import tile_raster_images\n\ntry:\n    import PIL.Image as Image\nexcept ImportError:\n    import Image\n\n\nclass cA(object):\n    \"\"\" Contractive Auto-Encoder class (cA)\n\n    The contractive autoencoder tries to reconstruct the input with an\n    additional constraint on the latent space. With the objective of\n    obtaining a robust representation of the input space, we\n    regularize the L2 norm(Froebenius) of the jacobian of the hidden\n    representation with respect to the input. Please refer to Rifai et\n    al.,2011 for more details.\n\n    If x is the input then equation (1) computes the projection of the\n    input into the latent space h. Equation (2) computes the jacobian\n    of h with respect to x.  Equation (3) computes the reconstruction\n    of the input, while equation (4) computes the reconstruction\n    error and the added regularization term from Eq.(2).\n\n    .. math::\n\n        h_i = s(W_i x + b_i)                                             (1)\n\n        J_i = h_i (1 - h_i) * W_i                                        (2)\n\n        x' = s(W' h  + b')                                               (3)\n\n        L = -sum_{k=1}^d [x_k \\log x'_k + (1-x_k) \\log( 1-x'_k)]\n             + lambda * sum_{i=1}^d sum_{j=1}^n J_{ij}^2                 (4)\n\n    \"\"\"\n\n    def __init__(self, numpy_rng, input=None, n_visible=784, n_hidden=100,\n                 n_batchsize=1, W=None, bhid=None, bvis=None):\n        \"\"\"Initialize the cA class by specifying the number of visible units\n        (the dimension d of the input), the number of hidden units (the\n        dimension d' of the latent or hidden space) and the contraction level.\n        The constructor also receives symbolic variables for the input, weights\n        and bias.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: number random generator used to generate weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given\n                     one is generated based on a seed drawn from `rng`\n\n        :type input: theano.tensor.TensorType\n        :param input: a symbolic description of the input or None for\n                      standalone cA\n\n        :type n_visible: int\n        :param n_visible: number of visible units\n\n        :type n_hidden: int\n        :param n_hidden:  number of hidden units\n\n        :type n_batchsize int\n        :param n_batchsize: number of examples per batch\n\n        :type W: theano.tensor.TensorType\n        :param W: Theano variable pointing to a set of weights that should be\n                  shared belong the dA and another architecture; if dA should\n                  be standalone set this to None\n\n        :type bhid: theano.tensor.TensorType\n        :param bhid: Theano variable pointing to a set of biases values (for\n                     hidden units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n        :type bvis: theano.tensor.TensorType\n        :param bvis: Theano variable pointing to a set of biases values (for\n                     visible units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n        \"\"\"\n        self.n_visible = n_visible\n        self.n_hidden = n_hidden\n        self.n_batchsize = n_batchsize\n        # note : W' was written as `W_prime` and b' as `b_prime`\n        if not W:\n            # W is initialized with `initial_W` which is uniformely sampled\n            # from -4*sqrt(6./(n_visible+n_hidden)) and\n            # 4*sqrt(6./(n_hidden+n_visible))the output of uniform if\n            # converted using asarray to dtype\n            # theano.config.floatX so that the code is runable on GPU\n            initial_W = numpy.asarray(\n                numpy_rng.uniform(\n                    low=-4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    high=4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    size=(n_visible, n_hidden)\n                ),\n                dtype=theano.config.floatX\n            )\n            W = theano.shared(value=initial_W, name='W', borrow=True)\n\n        if not bvis:\n            bvis = theano.shared(value=numpy.zeros(n_visible,\n                                                   dtype=theano.config.floatX),\n                                 borrow=True)\n\n        if not bhid:\n            bhid = theano.shared(value=numpy.zeros(n_hidden,\n                                                   dtype=theano.config.floatX),\n                                 name='b',\n                                 borrow=True)\n\n        self.W = W\n        # b corresponds to the bias of the hidden\n        self.b = bhid\n        # b_prime corresponds to the bias of the visible\n        self.b_prime = bvis\n        # tied weights, therefore W_prime is W transpose\n        self.W_prime = self.W.T\n\n        # if no input is given, generate a variable representing the input\n        if input is None:\n            # we use a matrix because we expect a minibatch of several\n            # examples, each example being a row\n            self.x = T.dmatrix(name='input')\n        else:\n            self.x = input\n\n        self.params = [self.W, self.b, self.b_prime]\n\n    def get_hidden_values(self, input):\n        \"\"\" Computes the values of the hidden layer \"\"\"\n        return T.nnet.sigmoid(T.dot(input, self.W) + self.b)\n\n    def get_jacobian(self, hidden, W):\n        \"\"\"Computes the jacobian of the hidden layer with respect to\n        the input, reshapes are necessary for broadcasting the\n        element-wise product on the right axis\n\n        \"\"\"\n        return T.reshape(hidden * (1 - hidden),\n                         (self.n_batchsize, 1, self.n_hidden)) * T.reshape(\n                             W, (1, self.n_visible, self.n_hidden))\n\n    def get_reconstructed_input(self, hidden):\n        \"\"\"Computes the reconstructed input given the values of the\n        hidden layer\n\n        \"\"\"\n        return T.nnet.sigmoid(T.dot(hidden, self.W_prime) + self.b_prime)\n\n    def get_cost_updates(self, contraction_level, learning_rate):\n        \"\"\" This function computes the cost and the updates for one trainng\n        step of the cA \"\"\"\n\n        y = self.get_hidden_values(self.x)\n        z = self.get_reconstructed_input(y)\n        J = self.get_jacobian(y, self.W)\n        # note : we sum over the size of a datapoint; if we are using\n        #        minibatches, L will be a vector, with one entry per\n        #        example in minibatch\n        self.L_rec = - T.sum(self.x * T.log(z) +\n                             (1 - self.x) * T.log(1 - z),\n                             axis=1)\n\n        # Compute the jacobian and average over the number of samples/minibatch\n        self.L_jacob = T.sum(J ** 2) / self.n_batchsize\n\n        # note : L is now a vector, where each element is the\n        #        cross-entropy cost of the reconstruction of the\n        #        corresponding example of the minibatch. We need to\n        #        compute the average of all these to get the cost of\n        #        the minibatch\n        cost = T.mean(self.L_rec) + contraction_level * T.mean(self.L_jacob)\n\n        # compute the gradients of the cost of the `cA` with respect\n        # to its parameters\n        gparams = T.grad(cost, self.params)\n        # generate the list of updates\n        updates = []\n        for param, gparam in zip(self.params, gparams):\n            updates.append((param, param - learning_rate * gparam))\n\n        return (cost, updates)\n\n\ndef test_cA(learning_rate=0.01, training_epochs=20,\n            dataset='mnist.pkl.gz',\n            batch_size=10, output_folder='cA_plots', contraction_level=.1):\n    \"\"\"\n    This demo is tested on MNIST\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used for training the contracting\n                          AutoEncoder\n\n    :type training_epochs: int\n    :param training_epochs: number of epochs used for training\n\n    :type dataset: string\n    :param dataset: path to the picked dataset\n\n    \"\"\"\n    datasets = load_data(dataset)\n    train_set_x, train_set_y = datasets[0]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()    # index to a [mini]batch\n    x = T.matrix('x')  # the data is presented as rasterized images\n\n    if not os.path.isdir(output_folder):\n        os.makedirs(output_folder)\n    os.chdir(output_folder)\n    ####################################\n    #        BUILDING THE MODEL        #\n    ####################################\n\n    rng = numpy.random.RandomState(123)\n\n    ca = cA(numpy_rng=rng, input=x,\n            n_visible=28 * 28, n_hidden=500, n_batchsize=batch_size)\n\n    cost, updates = ca.get_cost_updates(contraction_level=contraction_level,\n                                        learning_rate=learning_rate)\n\n    train_ca = theano.function(\n        [index],\n        [T.mean(ca.L_rec), ca.L_jacob],\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    start_time = time.clock()\n\n    ############\n    # TRAINING #\n    ############\n\n    # go through training epochs\n    for epoch in xrange(training_epochs):\n        # go through trainng set\n        c = []\n        for batch_index in xrange(n_train_batches):\n            c.append(train_ca(batch_index))\n\n        c_array = numpy.vstack(c)\n        print 'Training epoch %d, reconstruction cost ' % epoch, numpy.mean(\n            c_array[0]), ' jacobian norm ', numpy.mean(numpy.sqrt(c_array[1]))\n\n    end_time = time.clock()\n\n    training_time = (end_time - start_time)\n\n    print >> sys.stderr, ('The code for file ' + os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((training_time) / 60.))\n    image = Image.fromarray(tile_raster_images(\n        X=ca.W.get_value(borrow=True).T,\n        img_shape=(28, 28), tile_shape=(10, 10),\n        tile_spacing=(1, 1)))\n\n    image.save('cae_filters.png')\n\n    os.chdir('../')\n\n\nif __name__ == '__main__':\n    test_cA()\n"
  },
  {
    "path": "DeepLearningTutorials/code/convolutional_mlp.py",
    "content": "\"\"\"This tutorial introduces the LeNet5 neural network architecture\nusing Theano.  LeNet5 is a convolutional neural network, good for\nclassifying images. This tutorial shows how to build the architecture,\nand comes with all the hyper-parameters you need to reproduce the\npaper's MNIST results.\n\n\nThis implementation simplifies the model in the following ways:\n\n - LeNetConvPool doesn't implement location-specific gain and bias parameters\n - LeNetConvPool doesn't implement pooling by average, it implements pooling\n   by max.\n - Digit classification is implemented with a logistic regression rather than\n   an RBF network\n - LeNet5 was not fully-connected convolutions at second layer\n\nReferences:\n - Y. LeCun, L. Bottou, Y. Bengio and P. Haffner:\n   Gradient-Based Learning Applied to Document\n   Recognition, Proceedings of the IEEE, 86(11):2278-2324, November 1998.\n   http://yann.lecun.com/exdb/publis/pdf/lecun-98.pdf\n\n\"\"\"\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.signal import downsample\nfrom theano.tensor.nnet import conv\n\nfrom logistic_sgd import LogisticRegression, load_data\nfrom mlp import HiddenLayer\n\n\nclass LeNetConvPoolLayer(object):\n    \"\"\"Pool Layer of a convolutional network \"\"\"\n\n    def __init__(self, rng, input, filter_shape, image_shape, poolsize=(2, 2)):\n        \"\"\"\n        Allocate a LeNetConvPoolLayer with shared variable internal parameters.\n\n        :type rng: numpy.random.RandomState\n        :param rng: a random number generator used to initialize weights\n\n        :type input: theano.tensor.dtensor4\n        :param input: symbolic image tensor, of shape image_shape\n\n        :type filter_shape: tuple or list of length 4\n        :param filter_shape: (number of filters, num input feature maps,\n                              filter height, filter width)\n\n        :type image_shape: tuple or list of length 4\n        :param image_shape: (batch size, num input feature maps,\n                             image height, image width)\n\n        :type poolsize: tuple or list of length 2\n        :param poolsize: the downsampling (pooling) factor (#rows, #cols)\n        \"\"\"\n\n        assert image_shape[1] == filter_shape[1]\n        self.input = input\n\n        # there are \"num input feature maps * filter height * filter width\"\n        # inputs to each hidden unit\n        fan_in = numpy.prod(filter_shape[1:])\n        # each unit in the lower layer receives a gradient from:\n        # \"num output feature maps * filter height * filter width\" /\n        #   pooling size\n        fan_out = (filter_shape[0] * numpy.prod(filter_shape[2:]) /\n                   numpy.prod(poolsize))\n        # initialize weights with random weights\n        W_bound = numpy.sqrt(6. / (fan_in + fan_out))\n        self.W = theano.shared(\n            numpy.asarray(\n                rng.uniform(low=-W_bound, high=W_bound, size=filter_shape),\n                dtype=theano.config.floatX\n            ),\n            borrow=True\n        )\n\n        # the bias is a 1D tensor -- one bias per output feature map\n        b_values = numpy.zeros((filter_shape[0],), dtype=theano.config.floatX)\n        self.b = theano.shared(value=b_values, borrow=True)\n\n        # convolve input feature maps with filters\n        conv_out = conv.conv2d(\n            input=input,\n            filters=self.W,\n            filter_shape=filter_shape,\n            image_shape=image_shape\n        )\n\n        # downsample each feature map individually, using maxpooling\n        pooled_out = downsample.max_pool_2d(\n            input=conv_out,\n            ds=poolsize,\n            ignore_border=True\n        )\n\n        # add the bias term. Since the bias is a vector (1D array), we first\n        # reshape it to a tensor of shape (1, n_filters, 1, 1). Each bias will\n        # thus be broadcasted across mini-batches and feature map\n        # width & height\n        self.output = T.tanh(pooled_out + self.b.dimshuffle('x', 0, 'x', 'x'))\n\n        # store parameters of this layer\n        self.params = [self.W, self.b]\n\n\ndef evaluate_lenet5(learning_rate=0.1, n_epochs=200,\n                    dataset='mnist.pkl.gz',\n                    nkerns=[20, 50], batch_size=500):\n    \"\"\" Demonstrates lenet on MNIST dataset\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used (factor for the stochastic\n                          gradient)\n\n    :type n_epochs: int\n    :param n_epochs: maximal number of epochs to run the optimizer\n\n    :type dataset: string\n    :param dataset: path to the dataset used for training /testing (MNIST here)\n\n    :type nkerns: list of ints\n    :param nkerns: number of kernels on each layer\n    \"\"\"\n\n    rng = numpy.random.RandomState(23455)\n\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0]\n    n_valid_batches = valid_set_x.get_value(borrow=True).shape[0]\n    n_test_batches = test_set_x.get_value(borrow=True).shape[0]\n    n_train_batches /= batch_size\n    n_valid_batches /= batch_size\n    n_test_batches /= batch_size\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()  # index to a [mini]batch\n\n    # start-snippet-1\n    x = T.matrix('x')   # the data is presented as rasterized images\n    y = T.ivector('y')  # the labels are presented as 1D vector of\n                        # [int] labels\n\n    ######################\n    # BUILD ACTUAL MODEL #\n    ######################\n    print '... building the model'\n\n    # Reshape matrix of rasterized images of shape (batch_size, 28 * 28)\n    # to a 4D tensor, compatible with our LeNetConvPoolLayer\n    # (28, 28) is the size of MNIST images.\n    layer0_input = x.reshape((batch_size, 1, 28, 28))\n\n    # Construct the first convolutional pooling layer:\n    # filtering reduces the image size to (28-5+1 , 28-5+1) = (24, 24)\n    # maxpooling reduces this further to (24/2, 24/2) = (12, 12)\n    # 4D output tensor is thus of shape (batch_size, nkerns[0], 12, 12)\n    layer0 = LeNetConvPoolLayer(\n        rng,\n        input=layer0_input,\n        image_shape=(batch_size, 1, 28, 28),\n        filter_shape=(nkerns[0], 1, 5, 5),\n        poolsize=(2, 2)\n    )\n\n    # Construct the second convolutional pooling layer\n    # filtering reduces the image size to (12-5+1, 12-5+1) = (8, 8)\n    # maxpooling reduces this further to (8/2, 8/2) = (4, 4)\n    # 4D output tensor is thus of shape (batch_size, nkerns[1], 4, 4)\n    layer1 = LeNetConvPoolLayer(\n        rng,\n        input=layer0.output,\n        image_shape=(batch_size, nkerns[0], 12, 12),\n        filter_shape=(nkerns[1], nkerns[0], 5, 5),\n        poolsize=(2, 2)\n    )\n\n    # the HiddenLayer being fully-connected, it operates on 2D matrices of\n    # shape (batch_size, num_pixels) (i.e matrix of rasterized images).\n    # This will generate a matrix of shape (batch_size, nkerns[1] * 4 * 4),\n    # or (500, 50 * 4 * 4) = (500, 800) with the default values.\n    layer2_input = layer1.output.flatten(2)\n\n    # construct a fully-connected sigmoidal layer\n    layer2 = HiddenLayer(\n        rng,\n        input=layer2_input,\n        n_in=nkerns[1] * 4 * 4,\n        n_out=500,\n        activation=T.tanh\n    )\n\n    # classify the values of the fully-connected sigmoidal layer\n    layer3 = LogisticRegression(input=layer2.output, n_in=500, n_out=10)\n\n    # the cost we minimize during training is the NLL of the model\n    cost = layer3.negative_log_likelihood(y)\n\n    # create a function to compute the mistakes that are made by the model\n    test_model = theano.function(\n        [index],\n        layer3.errors(y),\n        givens={\n            x: test_set_x[index * batch_size: (index + 1) * batch_size],\n            y: test_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    validate_model = theano.function(\n        [index],\n        layer3.errors(y),\n        givens={\n            x: valid_set_x[index * batch_size: (index + 1) * batch_size],\n            y: valid_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    # create a list of all model parameters to be fit by gradient descent\n    params = layer3.params + layer2.params + layer1.params + layer0.params\n\n    # create a list of gradients for all model parameters\n    grads = T.grad(cost, params)\n\n    # train_model is a function that updates the model parameters by\n    # SGD Since this model has many parameters, it would be tedious to\n    # manually create an update rule for each model parameter. We thus\n    # create the updates list by automatically looping over all\n    # (params[i], grads[i]) pairs.\n    updates = [\n        (param_i, param_i - learning_rate * grad_i)\n        for param_i, grad_i in zip(params, grads)\n    ]\n\n    train_model = theano.function(\n        [index],\n        cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size],\n            y: train_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n    # end-snippet-1\n\n    ###############\n    # TRAIN MODEL #\n    ###############\n    print '... training'\n    # early-stopping parameters\n    patience = 10000  # look as this many examples regardless\n    patience_increase = 2  # wait this much longer when a new best is\n                           # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                   # considered significant\n    validation_frequency = min(n_train_batches, patience / 2)\n                                  # go through this many\n                                  # minibatche before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_validation_loss = numpy.inf\n    best_iter = 0\n    test_score = 0.\n    start_time = time.clock()\n\n    epoch = 0\n    done_looping = False\n\n    while (epoch < n_epochs) and (not done_looping):\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n\n            if iter % 100 == 0:\n                print 'training @ iter = ', iter\n            cost_ij = train_model(minibatch_index)\n\n            if (iter + 1) % validation_frequency == 0:\n\n                # compute zero-one loss on validation set\n                validation_losses = [validate_model(i) for i\n                                     in xrange(n_valid_batches)]\n                this_validation_loss = numpy.mean(validation_losses)\n                print('epoch %i, minibatch %i/%i, validation error %f %%' %\n                      (epoch, minibatch_index + 1, n_train_batches,\n                       this_validation_loss * 100.))\n\n                # if we got the best validation score until now\n                if this_validation_loss < best_validation_loss:\n\n                    #improve patience if loss improvement is good enough\n                    if this_validation_loss < best_validation_loss *  \\\n                       improvement_threshold:\n                        patience = max(patience, iter * patience_increase)\n\n                    # save best validation score and iteration number\n                    best_validation_loss = this_validation_loss\n                    best_iter = iter\n\n                    # test it on the test set\n                    test_losses = [\n                        test_model(i)\n                        for i in xrange(n_test_batches)\n                    ]\n                    test_score = numpy.mean(test_losses)\n                    print(('     epoch %i, minibatch %i/%i, test error of '\n                           'best model %f %%') %\n                          (epoch, minibatch_index + 1, n_train_batches,\n                           test_score * 100.))\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    end_time = time.clock()\n    print('Optimization complete.')\n    print('Best validation score of %f %% obtained at iteration %i, '\n          'with test performance %f %%' %\n          (best_validation_loss * 100., best_iter + 1, test_score * 100.))\n    print >> sys.stderr, ('The code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time) / 60.))\n\nif __name__ == '__main__':\n    evaluate_lenet5()\n\n\ndef experiment(state, channel):\n    evaluate_lenet5(state.learning_rate, dataset=state.dataset)\n"
  },
  {
    "path": "DeepLearningTutorials/code/dA.py",
    "content": "\"\"\"\n This tutorial introduces denoising auto-encoders (dA) using Theano.\n\n Denoising autoencoders are the building blocks for SdA.\n They are based on auto-encoders as the ones used in Bengio et al. 2007.\n An autoencoder takes an input x and first maps it to a hidden representation\n y = f_{\\theta}(x) = s(Wx+b), parameterized by \\theta={W,b}. The resulting\n latent representation y is then mapped back to a \"reconstructed\" vector\n z \\in [0,1]^d in input space z = g_{\\theta'}(y) = s(W'y + b').  The weight\n matrix W' can optionally be constrained such that W' = W^T, in which case\n the autoencoder is said to have tied weights. The network is trained such\n that to minimize the reconstruction error (the error between x and z).\n\n For the denosing autoencoder, during training, first x is corrupted into\n \\tilde{x}, where \\tilde{x} is a partially destroyed version of x by means\n of a stochastic mapping. Afterwards y is computed as before (using\n \\tilde{x}), y = s(W\\tilde{x} + b) and z as s(W'y + b'). The reconstruction\n error is now measured between z and the uncorrupted input x, which is\n computed as the cross-entropy :\n      - \\sum_{k=1}^d[ x_k \\log z_k + (1-x_k) \\log( 1-z_k)]\n\n\n References :\n   - P. Vincent, H. Larochelle, Y. Bengio, P.A. Manzagol: Extracting and\n   Composing Robust Features with Denoising Autoencoders, ICML'08, 1096-1103,\n   2008\n   - Y. Bengio, P. Lamblin, D. Popovici, H. Larochelle: Greedy Layer-Wise\n   Training of Deep Networks, Advances in Neural Information Processing\n   Systems 19, 2007\n\n\"\"\"\n\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\nfrom logistic_sgd import load_data\nfrom utils import tile_raster_images\n\ntry:\n    import PIL.Image as Image\nexcept ImportError:\n    import Image\n\n\n# start-snippet-1\nclass dA(object):\n    \"\"\"Denoising Auto-Encoder class (dA)\n\n    A denoising autoencoders tries to reconstruct the input from a corrupted\n    version of it by projecting it first in a latent space and reprojecting\n    it afterwards back in the input space. Please refer to Vincent et al.,2008\n    for more details. If x is the input then equation (1) computes a partially\n    destroyed version of x by means of a stochastic mapping q_D. Equation (2)\n    computes the projection of the input into the latent space. Equation (3)\n    computes the reconstruction of the input, while equation (4) computes the\n    reconstruction error.\n\n    .. math::\n\n        \\tilde{x} ~ q_D(\\tilde{x}|x)                                     (1)\n\n        y = s(W \\tilde{x} + b)                                           (2)\n\n        x = s(W' y  + b')                                                (3)\n\n        L(x,z) = -sum_{k=1}^d [x_k \\log z_k + (1-x_k) \\log( 1-z_k)]      (4)\n\n    \"\"\"\n\n    def __init__(\n        self,\n        numpy_rng,\n        theano_rng=None,\n        input=None,\n        n_visible=784,\n        n_hidden=500,\n        W=None,\n        bhid=None,\n        bvis=None\n    ):\n        \"\"\"\n        Initialize the dA class by specifying the number of visible units (the\n        dimension d of the input ), the number of hidden units ( the dimension\n        d' of the latent or hidden space ) and the corruption level. The\n        constructor also receives symbolic variables for the input, weights and\n        bias. Such a symbolic variables are useful when, for example the input\n        is the result of some computations, or when weights are shared between\n        the dA and an MLP layer. When dealing with SdAs this always happens,\n        the dA on layer 2 gets as input the output of the dA on layer 1,\n        and the weights of the dA are used in the second stage of training\n        to construct an MLP.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: number random generator used to generate weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given one is\n                     generated based on a seed drawn from `rng`\n\n        :type input: theano.tensor.TensorType\n        :param input: a symbolic description of the input or None for\n                      standalone dA\n\n        :type n_visible: int\n        :param n_visible: number of visible units\n\n        :type n_hidden: int\n        :param n_hidden:  number of hidden units\n\n        :type W: theano.tensor.TensorType\n        :param W: Theano variable pointing to a set of weights that should be\n                  shared belong the dA and another architecture; if dA should\n                  be standalone set this to None\n\n        :type bhid: theano.tensor.TensorType\n        :param bhid: Theano variable pointing to a set of biases values (for\n                     hidden units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n        :type bvis: theano.tensor.TensorType\n        :param bvis: Theano variable pointing to a set of biases values (for\n                     visible units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n\n        \"\"\"\n        self.n_visible = n_visible\n        self.n_hidden = n_hidden\n\n        # create a Theano random generator that gives symbolic random values\n        if not theano_rng:\n            theano_rng = RandomStreams(numpy_rng.randint(2 ** 30))\n\n        # note : W' was written as `W_prime` and b' as `b_prime`\n        if not W:\n            # W is initialized with `initial_W` which is uniformely sampled\n            # from -4*sqrt(6./(n_visible+n_hidden)) and\n            # 4*sqrt(6./(n_hidden+n_visible))the output of uniform if\n            # converted using asarray to dtype\n            # theano.config.floatX so that the code is runable on GPU\n            initial_W = numpy.asarray(\n                numpy_rng.uniform(\n                    low=-4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    high=4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    size=(n_visible, n_hidden)\n                ),\n                dtype=theano.config.floatX\n            )\n            W = theano.shared(value=initial_W, name='W', borrow=True)\n\n        if not bvis:\n            bvis = theano.shared(\n                value=numpy.zeros(\n                    n_visible,\n                    dtype=theano.config.floatX\n                ),\n                borrow=True\n            )\n\n        if not bhid:\n            bhid = theano.shared(\n                value=numpy.zeros(\n                    n_hidden,\n                    dtype=theano.config.floatX\n                ),\n                name='b',\n                borrow=True\n            )\n\n        self.W = W\n        # b corresponds to the bias of the hidden\n        self.b = bhid\n        # b_prime corresponds to the bias of the visible\n        self.b_prime = bvis\n        # tied weights, therefore W_prime is W transpose\n        self.W_prime = self.W.T\n        self.theano_rng = theano_rng\n        # if no input is given, generate a variable representing the input\n        if input is None:\n            # we use a matrix because we expect a minibatch of several\n            # examples, each example being a row\n            self.x = T.dmatrix(name='input')\n        else:\n            self.x = input\n\n        self.params = [self.W, self.b, self.b_prime]\n    # end-snippet-1\n\n    def get_corrupted_input(self, input, corruption_level):\n        \"\"\"This function keeps ``1-corruption_level`` entries of the inputs the\n        same and zero-out randomly selected subset of size ``coruption_level``\n        Note : first argument of theano.rng.binomial is the shape(size) of\n               random numbers that it should produce\n               second argument is the number of trials\n               third argument is the probability of success of any trial\n\n                this will produce an array of 0s and 1s where 1 has a\n                probability of 1 - ``corruption_level`` and 0 with\n                ``corruption_level``\n\n                The binomial function return int64 data type by\n                default.  int64 multiplicated by the input\n                type(floatX) always return float64.  To keep all data\n                in floatX when floatX is float32, we set the dtype of\n                the binomial to floatX. As in our case the value of\n                the binomial is always 0 or 1, this don't change the\n                result. This is needed to allow the gpu to work\n                correctly as it only support float32 for now.\n\n        \"\"\"\n        return self.theano_rng.binomial(size=input.shape, n=1,\n                                        p=1 - corruption_level,\n                                        dtype=theano.config.floatX) * input\n\n    def get_hidden_values(self, input):\n        \"\"\" Computes the values of the hidden layer \"\"\"\n        return T.nnet.sigmoid(T.dot(input, self.W) + self.b)\n\n    def get_reconstructed_input(self, hidden):\n        \"\"\"Computes the reconstructed input given the values of the\n        hidden layer\n\n        \"\"\"\n        return T.nnet.sigmoid(T.dot(hidden, self.W_prime) + self.b_prime)\n\n    def get_cost_updates(self, corruption_level, learning_rate):\n        \"\"\" This function computes the cost and the updates for one trainng\n        step of the dA \"\"\"\n\n        tilde_x = self.get_corrupted_input(self.x, corruption_level)\n        y = self.get_hidden_values(tilde_x)\n        z = self.get_reconstructed_input(y)\n        # note : we sum over the size of a datapoint; if we are using\n        #        minibatches, L will be a vector, with one entry per\n        #        example in minibatch\n        L = - T.sum(self.x * T.log(z) + (1 - self.x) * T.log(1 - z), axis=1)\n        # note : L is now a vector, where each element is the\n        #        cross-entropy cost of the reconstruction of the\n        #        corresponding example of the minibatch. We need to\n        #        compute the average of all these to get the cost of\n        #        the minibatch\n        cost = T.mean(L)\n\n        # compute the gradients of the cost of the `dA` with respect\n        # to its parameters\n        gparams = T.grad(cost, self.params)\n        # generate the list of updates\n        updates = [\n            (param, param - learning_rate * gparam)\n            for param, gparam in zip(self.params, gparams)\n        ]\n\n        return (cost, updates)\n\n\ndef test_dA(learning_rate=0.1, training_epochs=15,\n            dataset='mnist.pkl.gz',\n            batch_size=20, output_folder='dA_plots'):\n\n    \"\"\"\n    This demo is tested on MNIST\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used for training the DeNosing\n                          AutoEncoder\n\n    :type training_epochs: int\n    :param training_epochs: number of epochs used for training\n\n    :type dataset: string\n    :param dataset: path to the picked dataset\n\n    \"\"\"\n    datasets = load_data(dataset)\n    train_set_x, train_set_y = datasets[0]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()    # index to a [mini]batch\n    x = T.matrix('x')  # the data is presented as rasterized images\n\n    if not os.path.isdir(output_folder):\n        os.makedirs(output_folder)\n    os.chdir(output_folder)\n    ####################################\n    # BUILDING THE MODEL NO CORRUPTION #\n    ####################################\n\n    rng = numpy.random.RandomState(123)\n    theano_rng = RandomStreams(rng.randint(2 ** 30))\n\n    da = dA(\n        numpy_rng=rng,\n        theano_rng=theano_rng,\n        input=x,\n        n_visible=28 * 28,\n        n_hidden=500\n    )\n\n    cost, updates = da.get_cost_updates(\n        corruption_level=0.,\n        learning_rate=learning_rate\n    )\n\n    train_da = theano.function(\n        [index],\n        cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    start_time = time.clock()\n\n    ############\n    # TRAINING #\n    ############\n\n    # go through training epochs\n    for epoch in xrange(training_epochs):\n        # go through trainng set\n        c = []\n        for batch_index in xrange(n_train_batches):\n            c.append(train_da(batch_index))\n\n        print 'Training epoch %d, cost ' % epoch, numpy.mean(c)\n\n    end_time = time.clock()\n\n    training_time = (end_time - start_time)\n\n    print >> sys.stderr, ('The no corruption code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((training_time) / 60.))\n    image = Image.fromarray(\n        tile_raster_images(X=da.W.get_value(borrow=True).T,\n                           img_shape=(28, 28), tile_shape=(10, 10),\n                           tile_spacing=(1, 1)))\n    image.save('filters_corruption_0.png')\n\n    #####################################\n    # BUILDING THE MODEL CORRUPTION 30% #\n    #####################################\n\n    rng = numpy.random.RandomState(123)\n    theano_rng = RandomStreams(rng.randint(2 ** 30))\n\n    da = dA(\n        numpy_rng=rng,\n        theano_rng=theano_rng,\n        input=x,\n        n_visible=28 * 28,\n        n_hidden=500\n    )\n\n    cost, updates = da.get_cost_updates(\n        corruption_level=0.3,\n        learning_rate=learning_rate\n    )\n\n    train_da = theano.function(\n        [index],\n        cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    start_time = time.clock()\n\n    ############\n    # TRAINING #\n    ############\n\n    # go through training epochs\n    for epoch in xrange(training_epochs):\n        # go through trainng set\n        c = []\n        for batch_index in xrange(n_train_batches):\n            c.append(train_da(batch_index))\n\n        print 'Training epoch %d, cost ' % epoch, numpy.mean(c)\n\n    end_time = time.clock()\n\n    training_time = (end_time - start_time)\n\n    print >> sys.stderr, ('The 30% corruption code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % (training_time / 60.))\n\n    image = Image.fromarray(tile_raster_images(\n        X=da.W.get_value(borrow=True).T,\n        img_shape=(28, 28), tile_shape=(10, 10),\n        tile_spacing=(1, 1)))\n    image.save('filters_corruption_30.png')\n\n    os.chdir('../')\n\n\nif __name__ == '__main__':\n    test_dA()\n"
  },
  {
    "path": "DeepLearningTutorials/code/hmc/__init__.py",
    "content": ""
  },
  {
    "path": "DeepLearningTutorials/code/hmc/hmc.py",
    "content": "\"\"\"\nTODO\n\"\"\"\n\nimport numpy\n\nfrom theano import function, shared\nfrom theano import tensor as TT\nimport theano\n\nsharedX = (lambda X, name:\n           shared(numpy.asarray(X, dtype=theano.config.floatX), name=name))\n\n\ndef kinetic_energy(vel):\n    \"\"\"Returns the kinetic energy associated with the given velocity\n    and mass of 1.\n\n    Parameters\n    ----------\n    vel: theano matrix\n        Symbolic matrix whose rows are velocity vectors.\n\n    Returns\n    -------\n    return: theano vector\n        Vector whose i-th entry is the kinetic entry associated with vel[i].\n\n    \"\"\"\n    return 0.5 * (vel ** 2).sum(axis=1)\n\n\ndef hamiltonian(pos, vel, energy_fn):\n    \"\"\"\n    Returns the Hamiltonian (sum of potential and kinetic energy) for the given\n    velocity and position.\n\n    Parameters\n    ----------\n    pos: theano matrix\n        Symbolic matrix whose rows are position vectors.\n    vel: theano matrix\n        Symbolic matrix whose rows are velocity vectors.\n    energy_fn: python function\n        Python function, operating on symbolic theano variables, used tox\n        compute the potential energy at a given position.\n\n    Returns\n    -------\n    return: theano vector\n        Vector whose i-th entry is the Hamiltonian at position pos[i] and\n        velocity vel[i].\n    \"\"\"\n    # assuming mass is 1\n    return energy_fn(pos) + kinetic_energy(vel)\n\n\ndef metropolis_hastings_accept(energy_prev, energy_next, s_rng):\n    \"\"\"\n    Performs a Metropolis-Hastings accept-reject move.\n\n    Parameters\n    ----------\n    energy_prev: theano vector\n        Symbolic theano tensor which contains the energy associated with the\n        configuration at time-step t.\n    energy_next: theano vector\n        Symbolic theano tensor which contains the energy associated with the\n        proposed configuration at time-step t+1.\n    s_rng: theano.tensor.shared_randomstreams.RandomStreams\n        Theano shared random stream object used to generate the random number\n        used in proposal.\n\n    Returns\n    -------\n    return: boolean\n        True if move is accepted, False otherwise\n    \"\"\"\n    ediff = energy_prev - energy_next\n    return (TT.exp(ediff) - s_rng.uniform(size=energy_prev.shape)) >= 0\n\n\ndef simulate_dynamics(initial_pos, initial_vel, stepsize, n_steps, energy_fn):\n    \"\"\"\n    Return final (position, velocity) obtained after an `n_steps` leapfrog\n    updates, using Hamiltonian dynamics.\n\n    Parameters\n    ----------\n    initial_pos: shared theano matrix\n        Initial position at which to start the simulation\n    initial_vel: shared theano matrix\n        Initial velocity of particles\n    stepsize: shared theano scalar\n        Scalar value controlling amount by which to move\n    energy_fn: python function\n        Python function, operating on symbolic theano variables, used to\n        compute the potential energy at a given position.\n\n    Returns\n    -------\n    rval1: theano matrix\n        Final positions obtained after simulation\n    rval2: theano matrix\n        Final velocity obtained after simulation\n    \"\"\"\n\n    def leapfrog(pos, vel, step):\n        \"\"\"\n        Inside loop of Scan. Performs one step of leapfrog update, using\n        Hamiltonian dynamics.\n\n        Parameters\n        ----------\n        pos: theano matrix\n            in leapfrog update equations, represents pos(t), position at time t\n        vel: theano matrix\n            in leapfrog update equations, represents vel(t - stepsize/2),\n            velocity at time (t - stepsize/2)\n        step: theano scalar\n            scalar value controlling amount by which to move\n\n        Returns\n        -------\n        rval1: [theano matrix, theano matrix]\n            Symbolic theano matrices for new position pos(t + stepsize), and\n            velocity vel(t + stepsize/2)\n        rval2: dictionary\n            Dictionary of updates for the Scan Op\n        \"\"\"\n        # from pos(t) and vel(t-stepsize/2), compute vel(t+stepsize/2)\n        dE_dpos = TT.grad(energy_fn(pos).sum(), pos)\n        new_vel = vel - step * dE_dpos\n        # from vel(t+stepsize/2) compute pos(t+stepsize)\n        new_pos = pos + step * new_vel\n        return [new_pos, new_vel], {}\n\n    # compute velocity at time-step: t + stepsize/2\n    initial_energy = energy_fn(initial_pos)\n    dE_dpos = TT.grad(initial_energy.sum(), initial_pos)\n    vel_half_step = initial_vel - 0.5 * stepsize * dE_dpos\n\n    # compute position at time-step: t + stepsize\n    pos_full_step = initial_pos + stepsize * vel_half_step\n\n    # perform leapfrog updates: the scan op is used to repeatedly compute\n    # vel(t + (m-1/2)*stepsize) and pos(t + m*stepsize) for m in [2,n_steps].\n    (all_pos, all_vel), scan_updates = theano.scan(\n        leapfrog,\n        outputs_info=[\n            dict(initial=pos_full_step),\n            dict(initial=vel_half_step),\n        ],\n        non_sequences=[stepsize],\n        n_steps=n_steps - 1)\n    final_pos = all_pos[-1]\n    final_vel = all_vel[-1]\n    # NOTE: Scan always returns an updates dictionary, in case the\n    # scanned function draws samples from a RandomStream. These\n    # updates must then be used when compiling the Theano function, to\n    # avoid drawing the same random numbers each time the function is\n    # called. In this case however, we consciously ignore\n    # \"scan_updates\" because we know it is empty.\n    assert not scan_updates\n\n    # The last velocity returned by scan is vel(t +\n    # (n_steps - 1 / 2) * stepsize) We therefore perform one more half-step\n    # to return vel(t + n_steps * stepsize)\n    energy = energy_fn(final_pos)\n    final_vel = final_vel - 0.5 * stepsize * TT.grad(energy.sum(), final_pos)\n\n    # return new proposal state\n    return final_pos, final_vel\n\n\n# start-snippet-1\ndef hmc_move(s_rng, positions, energy_fn, stepsize, n_steps):\n    \"\"\"\n    This function performs one-step of Hybrid Monte-Carlo sampling. We start by\n    sampling a random velocity from a univariate Gaussian distribution, perform\n    `n_steps` leap-frog updates using Hamiltonian dynamics and accept-reject\n    using Metropolis-Hastings.\n\n    Parameters\n    ----------\n    s_rng: theano shared random stream\n        Symbolic random number generator used to draw random velocity and\n        perform accept-reject move.\n    positions: shared theano matrix\n        Symbolic matrix whose rows are position vectors.\n    energy_fn: python function\n        Python function, operating on symbolic theano variables, used to\n        compute the potential energy at a given position.\n    stepsize:  shared theano scalar\n        Shared variable containing the stepsize to use for `n_steps` of HMC\n        simulation steps.\n    n_steps: integer\n        Number of HMC steps to perform before proposing a new position.\n\n    Returns\n    -------\n    rval1: boolean\n        True if move is accepted, False otherwise\n    rval2: theano matrix\n        Matrix whose rows contain the proposed \"new position\"\n    \"\"\"\n    # end-snippet-1 start-snippet-2\n    # sample random velocity\n    initial_vel = s_rng.normal(size=positions.shape)\n    # end-snippet-2 start-snippet-3\n    # perform simulation of particles subject to Hamiltonian dynamics\n    final_pos, final_vel = simulate_dynamics(\n        initial_pos=positions,\n        initial_vel=initial_vel,\n        stepsize=stepsize,\n        n_steps=n_steps,\n        energy_fn=energy_fn\n    )\n    # end-snippet-3 start-snippet-4\n    # accept/reject the proposed move based on the joint distribution\n    accept = metropolis_hastings_accept(\n        energy_prev=hamiltonian(positions, initial_vel, energy_fn),\n        energy_next=hamiltonian(final_pos, final_vel, energy_fn),\n        s_rng=s_rng\n    )\n    # end-snippet-4\n    return accept, final_pos\n\n\n# start-snippet-5\ndef hmc_updates(positions, stepsize, avg_acceptance_rate, final_pos, accept,\n                target_acceptance_rate, stepsize_inc, stepsize_dec,\n                stepsize_min, stepsize_max, avg_acceptance_slowness):\n    \"\"\"This function is executed after `n_steps` of HMC sampling\n    (`hmc_move` function). It creates the updates dictionary used by\n    the `simulate` function. It takes care of updating: the position\n    (if the move is accepted), the stepsize (to track a given target\n    acceptance rate) and the average acceptance rate (computed as a\n    moving average).\n\n    Parameters\n    ----------\n    positions: shared variable, theano matrix\n        Shared theano matrix whose rows contain the old position\n    stepsize: shared variable, theano scalar\n        Shared theano scalar containing current step size\n    avg_acceptance_rate: shared variable, theano scalar\n        Shared theano scalar containing the current average acceptance rate\n    final_pos: shared variable, theano matrix\n        Shared theano matrix whose rows contain the new position\n    accept: theano scalar\n        Boolean-type variable representing whether or not the proposed HMC move\n        should be accepted or not.\n    target_acceptance_rate: float\n        The stepsize is modified in order to track this target acceptance rate.\n    stepsize_inc: float\n        Amount by which to increment stepsize when acceptance rate is too high.\n    stepsize_dec: float\n        Amount by which to decrement stepsize when acceptance rate is too low.\n    stepsize_min: float\n        Lower-bound on `stepsize`.\n    stepsize_min: float\n        Upper-bound on `stepsize`.\n    avg_acceptance_slowness: float\n        Average acceptance rate is computed as an exponential moving average.\n        (1-avg_acceptance_slowness) is the weight given to the newest\n        observation.\n\n    Returns\n    -------\n    rval1: dictionary-like\n        A dictionary of updates to be used by the `HMC_Sampler.simulate`\n        function.  The updates target the position, stepsize and average\n        acceptance rate.\n\n    \"\"\"\n\n    ## POSITION UPDATES ##\n    # broadcast `accept` scalar to tensor with the same dimensions as\n    # final_pos.\n    accept_matrix = accept.dimshuffle(0, *(('x',) * (final_pos.ndim - 1)))\n    # if accept is True, update to `final_pos` else stay put\n    new_positions = TT.switch(accept_matrix, final_pos, positions)\n    # end-snippet-5 start-snippet-7\n    ## STEPSIZE UPDATES ##\n    # if acceptance rate is too low, our sampler is too \"noisy\" and we reduce\n    # the stepsize. If it is too high, our sampler is too conservative, we can\n    # get away with a larger stepsize (resulting in better mixing).\n    _new_stepsize = TT.switch(avg_acceptance_rate > target_acceptance_rate,\n                              stepsize * stepsize_inc, stepsize * stepsize_dec)\n    # maintain stepsize in [stepsize_min, stepsize_max]\n    new_stepsize = TT.clip(_new_stepsize, stepsize_min, stepsize_max)\n\n    # end-snippet-7 start-snippet-6\n    ## ACCEPT RATE UPDATES ##\n    # perform exponential moving average\n    mean_dtype = theano.scalar.upcast(accept.dtype, avg_acceptance_rate.dtype)\n    new_acceptance_rate = TT.add(\n        avg_acceptance_slowness * avg_acceptance_rate,\n        (1.0 - avg_acceptance_slowness) * accept.mean(dtype=mean_dtype))\n    # end-snippet-6 start-snippet-8\n    return [(positions, new_positions),\n            (stepsize, new_stepsize),\n            (avg_acceptance_rate, new_acceptance_rate)]\n    # end-snippet-8\n\n\nclass HMC_sampler(object):\n    \"\"\"\n    Convenience wrapper for performing Hybrid Monte Carlo (HMC). It creates the\n    symbolic graph for performing an HMC simulation (using `hmc_move` and\n    `hmc_updates`). The graph is then compiled into the `simulate` function, a\n    theano function which runs the simulation and updates the required shared\n    variables.\n\n    Users should interface with the sampler thorugh the `draw` function which\n    advances the markov chain and returns the current sample by calling\n    `simulate` and `get_position` in sequence.\n\n    The hyper-parameters are the same as those used by Marc'Aurelio's\n    'train_mcRBM.py' file (available on his personal home page).\n    \"\"\"\n\n    def __init__(self, **kwargs):\n        self.__dict__.update(kwargs)\n\n    @classmethod\n    def new_from_shared_positions(\n        cls,\n        shared_positions,\n        energy_fn,\n        initial_stepsize=0.01,\n        target_acceptance_rate=.9,\n        n_steps=20,\n        stepsize_dec=0.98,\n        stepsize_min=0.001,\n        stepsize_max=0.25,\n        stepsize_inc=1.02,\n        # used in geometric avg. 1.0 would be not moving at all\n        avg_acceptance_slowness=0.9,\n        seed=12345\n    ):\n        \"\"\"\n        :param shared_positions: theano ndarray shared var with\n            many particle [initial] positions\n\n        :param energy_fn:\n            callable such that energy_fn(positions)\n            returns theano vector of energies.\n            The len of this vector is the batchsize.\n\n            The sum of this energy vector must be differentiable (with\n            theano.tensor.grad) with respect to the positions for HMC\n            sampling to work.\n\n        \"\"\"\n        # allocate shared variables\n        stepsize = sharedX(initial_stepsize, 'hmc_stepsize')\n        avg_acceptance_rate = sharedX(target_acceptance_rate,\n                                      'avg_acceptance_rate')\n        s_rng = TT.shared_randomstreams.RandomStreams(seed)\n\n        # define graph for an `n_steps` HMC simulation\n        accept, final_pos = hmc_move(\n            s_rng,\n            shared_positions,\n            energy_fn,\n            stepsize,\n            n_steps)\n\n        # define the dictionary of updates, to apply on every `simulate` call\n        simulate_updates = hmc_updates(\n            shared_positions,\n            stepsize,\n            avg_acceptance_rate,\n            final_pos=final_pos,\n            accept=accept,\n            stepsize_min=stepsize_min,\n            stepsize_max=stepsize_max,\n            stepsize_inc=stepsize_inc,\n            stepsize_dec=stepsize_dec,\n            target_acceptance_rate=target_acceptance_rate,\n            avg_acceptance_slowness=avg_acceptance_slowness)\n\n        # compile theano function\n        simulate = function([], [], updates=simulate_updates)\n\n        # create HMC_sampler object with the following attributes ...\n        return cls(\n            positions=shared_positions,\n            stepsize=stepsize,\n            stepsize_min=stepsize_min,\n            stepsize_max=stepsize_max,\n            avg_acceptance_rate=avg_acceptance_rate,\n            target_acceptance_rate=target_acceptance_rate,\n            s_rng=s_rng,\n            _updates=simulate_updates,\n            simulate=simulate)\n\n    def draw(self, **kwargs):\n        \"\"\"\n        Returns a new position obtained after `n_steps` of HMC simulation.\n\n        Parameters\n        ----------\n        kwargs: dictionary\n            The `kwargs` dictionary is passed to the shared variable\n            (self.positions) `get_value()` function.  For example, to avoid\n            copying the shared variable value, consider passing `borrow=True`.\n\n        Returns\n        -------\n        rval: numpy matrix\n            Numpy matrix whose of dimensions similar to `initial_position`.\n       \"\"\"\n        self.simulate()\n        return self.positions.get_value(borrow=False)\n"
  },
  {
    "path": "DeepLearningTutorials/code/hmc/test_hmc.py",
    "content": "import numpy\nfrom scipy import linalg\nimport theano\n\nfrom hmc import HMC_sampler\n\n\ndef sampler_on_nd_gaussian(sampler_cls, burnin, n_samples, dim=10):\n    batchsize = 3\n\n    rng = numpy.random.RandomState(123)\n\n    # Define a covariance and mu for a gaussian\n    mu = numpy.array(rng.rand(dim) * 10, dtype=theano.config.floatX)\n    cov = numpy.array(rng.rand(dim, dim), dtype=theano.config.floatX)\n    cov = (cov + cov.T) / 2.\n    cov[numpy.arange(dim), numpy.arange(dim)] = 1.0\n    cov_inv = linalg.inv(cov)\n\n    # Define energy function for a multi-variate Gaussian\n    def gaussian_energy(x):\n        return 0.5 * (theano.tensor.dot((x - mu), cov_inv) *\n                      (x - mu)).sum(axis=1)\n\n    # Declared shared random variable for positions\n    position = rng.randn(batchsize, dim).astype(theano.config.floatX)\n    position = theano.shared(position)\n\n    # Create HMC sampler\n    sampler = sampler_cls(position, gaussian_energy,\n                          initial_stepsize=1e-3, stepsize_max=0.5)\n\n    # Start with a burn-in process\n    garbage = [sampler.draw() for r in xrange(burnin)]  # burn-in Draw\n    # `n_samples`: result is a 3D tensor of dim [n_samples, batchsize,\n    # dim]\n    _samples = numpy.asarray([sampler.draw() for r in xrange(n_samples)])\n    # Flatten to [n_samples * batchsize, dim]\n    samples = _samples.T.reshape(dim, -1).T\n\n    print '****** TARGET VALUES ******'\n    print 'target mean:', mu\n    print 'target cov:\\n', cov\n\n    print '****** EMPIRICAL MEAN/COV USING HMC ******'\n    print 'empirical mean: ', samples.mean(axis=0)\n    print 'empirical_cov:\\n', numpy.cov(samples.T)\n\n    print '****** HMC INTERNALS ******'\n    print 'final stepsize', sampler.stepsize.get_value()\n    print 'final acceptance_rate', sampler.avg_acceptance_rate.get_value()\n\n    return sampler\n\n\ndef test_hmc():\n    sampler = sampler_on_nd_gaussian(HMC_sampler.new_from_shared_positions,\n                                     burnin=1000, n_samples=1000, dim=5)\n    assert abs(sampler.avg_acceptance_rate.get_value() -\n               sampler.target_acceptance_rate) < .1\n    assert sampler.stepsize.get_value() >= sampler.stepsize_min\n    assert sampler.stepsize.get_value() <= sampler.stepsize_max\n"
  },
  {
    "path": "DeepLearningTutorials/code/imdb.py",
    "content": "import cPickle\nimport gzip\nimport os\n\nimport numpy\nimport theano\n\n\ndef prepare_data(seqs, labels, maxlen=None):\n    \"\"\"Create the matrices from the datasets.\n\n    This pad each sequence to the same lenght: the lenght of the\n    longuest sequence or maxlen.\n\n    if maxlen is set, we will cut all sequence to this maximum\n    lenght.\n\n    This swap the axis!\n    \"\"\"\n    # x: a list of sentences\n    lengths = [len(s) for s in seqs]\n\n    if maxlen is not None:\n        new_seqs = []\n        new_labels = []\n        new_lengths = []\n        for l, s, y in zip(lengths, seqs, labels):\n            if l < maxlen:\n                new_seqs.append(s)\n                new_labels.append(y)\n                new_lengths.append(l)\n        lengths = new_lengths\n        labels = new_labels\n        seqs = new_seqs\n\n        if len(lengths) < 1:\n            return None, None, None\n\n    n_samples = len(seqs)\n    maxlen = numpy.max(lengths)\n\n    x = numpy.zeros((maxlen, n_samples)).astype('int64')\n    x_mask = numpy.zeros((maxlen, n_samples)).astype(theano.config.floatX)\n    for idx, s in enumerate(seqs):\n        x[:lengths[idx], idx] = s\n        x_mask[:lengths[idx], idx] = 1.\n\n    return x, x_mask, labels\n\n\ndef get_dataset_file(dataset, default_dataset, origin):\n    '''Look for it as if it was a full path, if not, try local file,\n    if not try in the data directory.\n\n    Download dataset if it is not present\n\n    '''\n    data_dir, data_file = os.path.split(dataset)\n    if data_dir == \"\" and not os.path.isfile(dataset):\n        # Check if dataset is in the data directory.\n        new_path = os.path.join(\n            os.path.split(__file__)[0],\n            \"..\",\n            \"data\",\n            dataset\n        )\n        if os.path.isfile(new_path) or data_file == default_dataset:\n            dataset = new_path\n\n    if (not os.path.isfile(dataset)) and data_file == default_dataset:\n        import urllib\n        print 'Downloading data from %s' % origin\n        urllib.urlretrieve(origin, dataset)\n    return dataset\n\n\ndef load_data(path=\"imdb.pkl\", n_words=100000, valid_portion=0.1, maxlen=None,\n              sort_by_len=True):\n    '''Loads the dataset\n\n    :type path: String\n    :param path: The path to the dataset (here IMDB)\n    :type n_words: int\n    :param n_words: The number of word to keep in the vocabulary.\n        All extra words are set to unknow (1).\n    :type valid_portion: float\n    :param valid_portion: The proportion of the full train set used for\n        the validation set.\n    :type maxlen: None or positive int\n    :param maxlen: the max sequence length we use in the train/valid set.\n    :type sort_by_len: bool\n    :name sort_by_len: Sort by the sequence lenght for the train,\n        valid and test set. This allow faster execution as it cause\n        less padding per minibatch. Another mechanism must be used to\n        shuffle the train set at each epoch.\n\n    '''\n\n    #############\n    # LOAD DATA #\n    #############\n\n    # Load the dataset\n    path = get_dataset_file(\n        path, \"imdb.pkl\",\n        \"http://www.iro.umontreal.ca/~lisa/deep/data/imdb.pkl\")\n\n    if path.endswith(\".gz\"):\n        f = gzip.open(path, 'rb')\n    else:\n        f = open(path, 'rb')\n\n    train_set = cPickle.load(f)\n    test_set = cPickle.load(f)\n    f.close()\n    if maxlen:\n        new_train_set_x = []\n        new_train_set_y = []\n        for x, y in zip(train_set[0], train_set[1]):\n            if len(x) < maxlen:\n                new_train_set_x.append(x)\n                new_train_set_y.append(y)\n        train_set = (new_train_set_x, new_train_set_y)\n        del new_train_set_x, new_train_set_y\n\n    # split training set into validation set\n    train_set_x, train_set_y = train_set\n    n_samples = len(train_set_x)\n    sidx = numpy.random.permutation(n_samples)\n    n_train = int(numpy.round(n_samples * (1. - valid_portion)))\n    valid_set_x = [train_set_x[s] for s in sidx[n_train:]]\n    valid_set_y = [train_set_y[s] for s in sidx[n_train:]]\n    train_set_x = [train_set_x[s] for s in sidx[:n_train]]\n    train_set_y = [train_set_y[s] for s in sidx[:n_train]]\n\n    train_set = (train_set_x, train_set_y)\n    valid_set = (valid_set_x, valid_set_y)\n\n    def remove_unk(x):\n        return [[1 if w >= n_words else w for w in sen] for sen in x]\n\n    test_set_x, test_set_y = test_set\n    valid_set_x, valid_set_y = valid_set\n    train_set_x, train_set_y = train_set\n\n    train_set_x = remove_unk(train_set_x)\n    valid_set_x = remove_unk(valid_set_x)\n    test_set_x = remove_unk(test_set_x)\n\n    def len_argsort(seq):\n        return sorted(range(len(seq)), key=lambda x: len(seq[x]))\n\n    if sort_by_len:\n        sorted_index = len_argsort(test_set_x)\n        test_set_x = [test_set_x[i] for i in sorted_index]\n        test_set_y = [test_set_y[i] for i in sorted_index]\n\n        sorted_index = len_argsort(valid_set_x)\n        valid_set_x = [valid_set_x[i] for i in sorted_index]\n        valid_set_y = [valid_set_y[i] for i in sorted_index]\n\n        sorted_index = len_argsort(train_set_x)\n        train_set_x = [train_set_x[i] for i in sorted_index]\n        train_set_y = [train_set_y[i] for i in sorted_index]\n\n    train = (train_set_x, train_set_y)\n    valid = (valid_set_x, valid_set_y)\n    test = (test_set_x, test_set_y)\n\n    return train, valid, test\n"
  },
  {
    "path": "DeepLearningTutorials/code/imdb_preprocess.py",
    "content": "\"\"\"\nThis script is what created the dataset pickled.\n\n1) You need to download this file and put it in the same directory as this file.\nhttps://github.com/moses-smt/mosesdecoder/raw/master/scripts/tokenizer/tokenizer.perl . Give it execution permission.\n\n2) Get the dataset from http://ai.stanford.edu/~amaas/data/sentiment/ and extract it in the current directory.\n\n3) Then run this script.\n\"\"\"\n\ndataset_path='/Tmp/bastienf/aclImdb/'\n\nimport numpy\nimport cPickle as pkl\n\nfrom collections import OrderedDict\n\nimport glob\nimport os\n\nfrom subprocess import Popen, PIPE\n\n# tokenizer.perl is from Moses: https://github.com/moses-smt/mosesdecoder/tree/master/scripts/tokenizer\ntokenizer_cmd = ['./tokenizer.perl', '-l', 'en', '-q', '-']\n\n\ndef tokenize(sentences):\n\n    print 'Tokenizing..',\n    text = \"\\n\".join(sentences)\n    tokenizer = Popen(tokenizer_cmd, stdin=PIPE, stdout=PIPE)\n    tok_text, _ = tokenizer.communicate(text)\n    toks = tok_text.split('\\n')[:-1]\n    print 'Done'\n\n    return toks\n\n\ndef build_dict(path):\n    sentences = []\n    currdir = os.getcwd()\n    os.chdir('%s/pos/' % path)\n    for ff in glob.glob(\"*.txt\"):\n        with open(ff, 'r') as f:\n            sentences.append(f.readline().strip())\n    os.chdir('%s/neg/' % path)\n    for ff in glob.glob(\"*.txt\"):\n        with open(ff, 'r') as f:\n            sentences.append(f.readline().strip())\n    os.chdir(currdir)\n\n    sentences = tokenize(sentences)\n\n    print 'Building dictionary..',\n    wordcount = dict()\n    for ss in sentences:\n        words = ss.strip().lower().split()\n        for w in words:\n            if w not in wordcount:\n                wordcount[w] = 1\n            else:\n                wordcount[w] += 1\n\n    counts = wordcount.values()\n    keys = wordcount.keys()\n\n    sorted_idx = numpy.argsort(counts)[::-1]\n\n    worddict = dict()\n\n    for idx, ss in enumerate(sorted_idx):\n        worddict[keys[ss]] = idx+2  # leave 0 and 1 (UNK)\n\n    print numpy.sum(counts), ' total words ', len(keys), ' unique words'\n\n    return worddict\n\n\ndef grab_data(path, dictionary):\n    sentences = []\n    currdir = os.getcwd()\n    os.chdir(path)\n    for ff in glob.glob(\"*.txt\"):\n        with open(ff, 'r') as f:\n            sentences.append(f.readline().strip())\n    os.chdir(currdir)\n    sentences = tokenize(sentences)\n\n    seqs = [None] * len(sentences)\n    for idx, ss in enumerate(sentences):\n        words = ss.strip().lower().split()\n        seqs[idx] = [dictionary[w] if w in dictionary else 1 for w in words]\n\n    return seqs\n\n\ndef main():\n    # Get the dataset from http://ai.stanford.edu/~amaas/data/sentiment/\n    path = dataset_path\n    dictionary = build_dict(os.path.join(path, 'train'))\n\n    train_x_pos = grab_data(path+'train/pos', dictionary)\n    train_x_neg = grab_data(path+'train/neg', dictionary)\n    train_x = train_x_pos + train_x_neg\n    train_y = [1] * len(train_x_pos) + [0] * len(train_x_neg)\n\n    test_x_pos = grab_data(path+'test/pos', dictionary)\n    test_x_neg = grab_data(path+'test/neg', dictionary)\n    test_x = test_x_pos + test_x_neg\n    test_y = [1] * len(test_x_pos) + [0] * len(test_x_neg)\n\n    f = open('imdb.pkl', 'wb')\n    pkl.dump((train_x, train_y), f, -1)\n    pkl.dump((test_x, test_y), f, -1)\n    f.close()\n\n    f = open('imdb.dict.pkl', 'wb')\n    pkl.dump(dictionary, f, -1)\n    f.close()\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "DeepLearningTutorials/code/logistic_cg.py",
    "content": "\"\"\"\nThis tutorial introduces logistic regression using Theano and conjugate\ngradient descent.\n\nLogistic regression is a probabilistic, linear classifier. It is parametrized\nby a weight matrix :math:`W` and a bias vector :math:`b`. Classification is\ndone by projecting data points onto a set of hyperplanes, the distance to\nwhich is used to determine a class membership probability.\n\nMathematically, this can be written as:\n\n.. math::\n  P(Y=i|x, W,b) &= softmax_i(W x + b) \\\\\n                &= \\frac {e^{W_i x + b_i}} {\\sum_j e^{W_j x + b_j}}\n\n\nThe output of the model or prediction is then done by taking the argmax of\nthe vector whose i'th element is P(Y=i|x).\n\n.. math::\n\n  y_{pred} = argmax_i P(Y=i|x,W,b)\n\n\nThis tutorial presents a conjugate gradient optimization method that is\nsuitable for smaller datasets.\n\n\nReferences:\n\n   - textbooks: \"Pattern Recognition and Machine Learning\" -\n                 Christopher M. Bishop, section 4.3.2\n\n\n\"\"\"\n__docformat__ = 'restructedtext en'\n\n\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\n\nfrom logistic_sgd import load_data\n\n\nclass LogisticRegression(object):\n    \"\"\"Multi-class Logistic Regression Class\n\n    The logistic regression is fully described by a weight matrix :math:`W`\n    and bias vector :math:`b`. Classification is done by projecting data\n    points onto a set of hyperplanes, the distance to which is used to\n    determine a class membership probability.\n    \"\"\"\n\n    def __init__(self, input, n_in, n_out):\n        \"\"\" Initialize the parameters of the logistic regression\n\n        :type input: theano.tensor.TensorType\n        :param input: symbolic variable that describes the input of the\n                      architecture ( one minibatch)\n\n        :type n_in: int\n        :param n_in: number of input units, the dimension of the space in\n                     which the datapoint lies\n\n        :type n_out: int\n        :param n_out: number of output units, the dimension of the space in\n                      which the target lies\n\n        \"\"\"\n\n        # initialize theta = (W,b) with 0s; W gets the shape (n_in, n_out),\n        # while b is a vector of n_out elements, making theta a vector of\n        # n_in*n_out + n_out elements\n        self.theta = theano.shared(\n            value=numpy.zeros(\n                n_in * n_out + n_out,\n                dtype=theano.config.floatX\n            ),\n            name='theta',\n            borrow=True\n        )\n        # W is represented by the fisr n_in*n_out elements of theta\n        self.W = self.theta[0:n_in * n_out].reshape((n_in, n_out))\n        # b is the rest (last n_out elements)\n        self.b = self.theta[n_in * n_out:n_in * n_out + n_out]\n\n        # compute vector of class-membership probabilities in symbolic form\n        self.p_y_given_x = T.nnet.softmax(T.dot(input, self.W) + self.b)\n\n        # compute prediction as class whose probability is maximal in\n        # symbolic form\n        self.y_pred = T.argmax(self.p_y_given_x, axis=1)\n\n    def negative_log_likelihood(self, y):\n        \"\"\"Return the negative log-likelihood of the prediction of this model\n        under a given target distribution.\n\n        .. math::\n\n            \\frac{1}{|\\mathcal{D}|}\\mathcal{L} (\\theta=\\{W,b\\}, \\mathcal{D}) =\n            \\frac{1}{|\\mathcal{D}|}\\sum_{i=0}^{|\\mathcal{D}|}\n                \\log(P(Y=y^{(i)}|x^{(i)}, W,b)) \\\\\n            \\ell (\\theta=\\{W,b\\}, \\mathcal{D})\n\n        :type y: theano.tensor.TensorType\n        :param y: corresponds to a vector that gives for each example the\n                  correct label\n        \"\"\"\n        return -T.mean(T.log(self.p_y_given_x)[T.arange(y.shape[0]), y])\n\n    def errors(self, y):\n        \"\"\"Return a float representing the number of errors in the minibatch\n        over the total number of examples of the minibatch\n\n        :type y: theano.tensor.TensorType\n        :param y: corresponds to a vector that gives for each example\n                  the correct label\n        \"\"\"\n\n        # check if y has same dimension of y_pred\n        if y.ndim != self.y_pred.ndim:\n            raise TypeError(\n                'y should have the same shape as self.y_pred',\n                ('y', y.type, 'y_pred', self.y_pred.type)\n            )\n        # check if y is of the correct datatype\n        if y.dtype.startswith('int'):\n            # the T.neq operator returns a vector of 0s and 1s, where 1\n            # represents a mistake in prediction\n            return T.mean(T.neq(self.y_pred, y))\n        else:\n            raise NotImplementedError()\n\n\ndef cg_optimization_mnist(n_epochs=50, mnist_pkl_gz='mnist.pkl.gz'):\n    \"\"\"Demonstrate conjugate gradient optimization of a log-linear model\n\n    This is demonstrated on MNIST.\n\n    :type n_epochs: int\n    :param n_epochs: number of epochs to run the optimizer\n\n    :type mnist_pkl_gz: string\n    :param mnist_pkl_gz: the path of the mnist training file from\n                 http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz\n\n    \"\"\"\n    #############\n    # LOAD DATA #\n    #############\n    datasets = load_data(mnist_pkl_gz)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    batch_size = 600    # size of the minibatch\n\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_valid_batches = valid_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_test_batches = test_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    n_in = 28 * 28  # number of input units\n    n_out = 10  # number of output units\n\n    ######################\n    # BUILD ACTUAL MODEL #\n    ######################\n    print '... building the model'\n\n    # allocate symbolic variables for the data\n    minibatch_offset = T.lscalar()  # offset to the start of a [mini]batch\n    x = T.matrix()   # the data is presented as rasterized images\n    y = T.ivector()  # the labels are presented as 1D vector of\n                     # [int] labels\n\n    # construct the logistic regression class\n    classifier = LogisticRegression(input=x, n_in=28 * 28, n_out=10)\n\n    # the cost we minimize during training is the negative log likelihood of\n    # the model in symbolic format\n    cost = classifier.negative_log_likelihood(y).mean()\n\n    # compile a theano function that computes the mistakes that are made by\n    # the model on a minibatch\n    test_model = theano.function(\n        [minibatch_offset],\n        classifier.errors(y),\n        givens={\n            x: test_set_x[minibatch_offset:minibatch_offset + batch_size],\n            y: test_set_y[minibatch_offset:minibatch_offset + batch_size]\n        },\n        name=\"test\"\n    )\n\n    validate_model = theano.function(\n        [minibatch_offset],\n        classifier.errors(y),\n        givens={\n            x: valid_set_x[minibatch_offset: minibatch_offset + batch_size],\n            y: valid_set_y[minibatch_offset: minibatch_offset + batch_size]\n        },\n        name=\"validate\"\n    )\n\n    #  compile a theano function that returns the cost of a minibatch\n    batch_cost = theano.function(\n        [minibatch_offset],\n        cost,\n        givens={\n            x: train_set_x[minibatch_offset: minibatch_offset + batch_size],\n            y: train_set_y[minibatch_offset: minibatch_offset + batch_size]\n        },\n        name=\"batch_cost\"\n    )\n\n    # compile a theano function that returns the gradient of the minibatch\n    # with respect to theta\n    batch_grad = theano.function(\n        [minibatch_offset],\n        T.grad(cost, classifier.theta),\n        givens={\n            x: train_set_x[minibatch_offset: minibatch_offset + batch_size],\n            y: train_set_y[minibatch_offset: minibatch_offset + batch_size]\n        },\n        name=\"batch_grad\"\n    )\n\n    # creates a function that computes the average cost on the training set\n    def train_fn(theta_value):\n        classifier.theta.set_value(theta_value, borrow=True)\n        train_losses = [batch_cost(i * batch_size)\n                        for i in xrange(n_train_batches)]\n        return numpy.mean(train_losses)\n\n    # creates a function that computes the average gradient of cost with\n    # respect to theta\n    def train_fn_grad(theta_value):\n        classifier.theta.set_value(theta_value, borrow=True)\n        grad = batch_grad(0)\n        for i in xrange(1, n_train_batches):\n            grad += batch_grad(i * batch_size)\n        return grad / n_train_batches\n\n    validation_scores = [numpy.inf, 0]\n\n    # creates the validation function\n    def callback(theta_value):\n        classifier.theta.set_value(theta_value, borrow=True)\n        #compute the validation loss\n        validation_losses = [validate_model(i * batch_size)\n                             for i in xrange(n_valid_batches)]\n        this_validation_loss = numpy.mean(validation_losses)\n        print('validation error %f %%' % (this_validation_loss * 100.,))\n\n        # check if it is better then best validation score got until now\n        if this_validation_loss < validation_scores[0]:\n            # if so, replace the old one, and compute the score on the\n            # testing dataset\n            validation_scores[0] = this_validation_loss\n            test_losses = [test_model(i * batch_size)\n                           for i in xrange(n_test_batches)]\n            validation_scores[1] = numpy.mean(test_losses)\n\n    ###############\n    # TRAIN MODEL #\n    ###############\n\n    # using scipy conjugate gradient optimizer\n    import scipy.optimize\n    print (\"Optimizing using scipy.optimize.fmin_cg...\")\n    start_time = time.clock()\n    best_w_b = scipy.optimize.fmin_cg(\n        f=train_fn,\n        x0=numpy.zeros((n_in + 1) * n_out, dtype=x.dtype),\n        fprime=train_fn_grad,\n        callback=callback,\n        disp=0,\n        maxiter=n_epochs\n    )\n    end_time = time.clock()\n    print(\n        (\n            'Optimization complete with best validation score of %f %%, with '\n            'test performance %f %%'\n        )\n        % (validation_scores[0] * 100., validation_scores[1] * 100.)\n    )\n\n    print >> sys.stderr, ('The code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.1fs' % ((end_time - start_time)))\n\n\nif __name__ == '__main__':\n    cg_optimization_mnist()\n"
  },
  {
    "path": "DeepLearningTutorials/code/logistic_sgd.py",
    "content": "\"\"\"\nThis tutorial introduces logistic regression using Theano and stochastic\ngradient descent.\n\nLogistic regression is a probabilistic, linear classifier. It is parametrized\nby a weight matrix :math:`W` and a bias vector :math:`b`. Classification is\ndone by projecting data points onto a set of hyperplanes, the distance to\nwhich is used to determine a class membership probability.\n\nMathematically, this can be written as:\n\n.. math::\n  P(Y=i|x, W,b) &= softmax_i(W x + b) \\\\\n                &= \\frac {e^{W_i x + b_i}} {\\sum_j e^{W_j x + b_j}}\n\n\nThe output of the model or prediction is then done by taking the argmax of\nthe vector whose i'th element is P(Y=i|x).\n\n.. math::\n\n  y_{pred} = argmax_i P(Y=i|x,W,b)\n\n\nThis tutorial presents a stochastic gradient descent optimization method\nsuitable for large datasets.\n\n\nReferences:\n\n    - textbooks: \"Pattern Recognition and Machine Learning\" -\n                 Christopher M. Bishop, section 4.3.2\n\n\"\"\"\n__docformat__ = 'restructedtext en'\n\nimport cPickle\nimport gzip\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\n\n\nclass LogisticRegression(object):\n    \"\"\"Multi-class Logistic Regression Class\n\n    The logistic regression is fully described by a weight matrix :math:`W`\n    and bias vector :math:`b`. Classification is done by projecting data\n    points onto a set of hyperplanes, the distance to which is used to\n    determine a class membership probability.\n    \"\"\"\n\n    def __init__(self, input, n_in, n_out):\n        \"\"\" Initialize the parameters of the logistic regression\n\n        :type input: theano.tensor.TensorType\n        :param input: symbolic variable that describes the input of the\n                      architecture (one minibatch)\n\n        :type n_in: int\n        :param n_in: number of input units, the dimension of the space in\n                     which the datapoints lie\n\n        :type n_out: int\n        :param n_out: number of output units, the dimension of the space in\n                      which the labels lie\n\n        \"\"\"\n        # start-snippet-1\n        # initialize with 0 the weights W as a matrix of shape (n_in, n_out)\n        self.W = theano.shared(\n            value=numpy.zeros(\n                (n_in, n_out),\n                dtype=theano.config.floatX\n            ),\n            name='W',\n            borrow=True\n        )\n        # initialize the baises b as a vector of n_out 0s\n        self.b = theano.shared(\n            value=numpy.zeros(\n                (n_out,),\n                dtype=theano.config.floatX\n            ),\n            name='b',\n            borrow=True\n        )\n\n        # symbolic expression for computing the matrix of class-membership\n        # probabilities\n        # Where:\n        # W is a matrix where column-k represent the separation hyper plain for\n        # class-k\n        # x is a matrix where row-j  represents input training sample-j\n        # b is a vector where element-k represent the free parameter of hyper\n        # plain-k\n        self.p_y_given_x = T.nnet.softmax(T.dot(input, self.W) + self.b)\n\n        # symbolic description of how to compute prediction as class whose\n        # probability is maximal\n        self.y_pred = T.argmax(self.p_y_given_x, axis=1)\n        # end-snippet-1\n\n        # parameters of the model\n        self.params = [self.W, self.b]\n\n    def negative_log_likelihood(self, y):\n        \"\"\"Return the mean of the negative log-likelihood of the prediction\n        of this model under a given target distribution.\n\n        .. math::\n\n            \\frac{1}{|\\mathcal{D}|} \\mathcal{L} (\\theta=\\{W,b\\}, \\mathcal{D}) =\n            \\frac{1}{|\\mathcal{D}|} \\sum_{i=0}^{|\\mathcal{D}|}\n                \\log(P(Y=y^{(i)}|x^{(i)}, W,b)) \\\\\n            \\ell (\\theta=\\{W,b\\}, \\mathcal{D})\n\n        :type y: theano.tensor.TensorType\n        :param y: corresponds to a vector that gives for each example the\n                  correct label\n\n        Note: we use the mean instead of the sum so that\n              the learning rate is less dependent on the batch size\n        \"\"\"\n        # start-snippet-2\n        # y.shape[0] is (symbolically) the number of rows in y, i.e.,\n        # number of examples (call it n) in the minibatch\n        # T.arange(y.shape[0]) is a symbolic vector which will contain\n        # [0,1,2,... n-1] T.log(self.p_y_given_x) is a matrix of\n        # Log-Probabilities (call it LP) with one row per example and\n        # one column per class LP[T.arange(y.shape[0]),y] is a vector\n        # v containing [LP[0,y[0]], LP[1,y[1]], LP[2,y[2]], ...,\n        # LP[n-1,y[n-1]]] and T.mean(LP[T.arange(y.shape[0]),y]) is\n        # the mean (across minibatch examples) of the elements in v,\n        # i.e., the mean log-likelihood across the minibatch.\n        return -T.mean(T.log(self.p_y_given_x)[T.arange(y.shape[0]), y])\n        # end-snippet-2\n\n    def errors(self, y):\n        \"\"\"Return a float representing the number of errors in the minibatch\n        over the total number of examples of the minibatch ; zero one\n        loss over the size of the minibatch\n\n        :type y: theano.tensor.TensorType\n        :param y: corresponds to a vector that gives for each example the\n                  correct label\n        \"\"\"\n\n        # check if y has same dimension of y_pred\n        if y.ndim != self.y_pred.ndim:\n            raise TypeError(\n                'y should have the same shape as self.y_pred',\n                ('y', y.type, 'y_pred', self.y_pred.type)\n            )\n        # check if y is of the correct datatype\n        if y.dtype.startswith('int'):\n            # the T.neq operator returns a vector of 0s and 1s, where 1\n            # represents a mistake in prediction\n            return T.mean(T.neq(self.y_pred, y))\n        else:\n            raise NotImplementedError()\n\n\ndef load_data(dataset):\n    ''' Loads the dataset\n\n    :type dataset: string\n    :param dataset: the path to the dataset (here MNIST)\n    '''\n\n    #############\n    # LOAD DATA #\n    #############\n\n    # Download the MNIST dataset if it is not present\n    data_dir, data_file = os.path.split(dataset)\n    if data_dir == \"\" and not os.path.isfile(dataset):\n        # Check if dataset is in the data directory.\n        new_path = os.path.join(\n            os.path.split(__file__)[0],\n            \"..\",\n            \"data\",\n            dataset\n        )\n        if os.path.isfile(new_path) or data_file == 'mnist.pkl.gz':\n            dataset = new_path\n\n    if (not os.path.isfile(dataset)) and data_file == 'mnist.pkl.gz':\n        import urllib\n        origin = (\n            'http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz'\n        )\n        print 'Downloading data from %s' % origin\n        urllib.urlretrieve(origin, dataset)\n\n    print '... loading data'\n\n    # Load the dataset\n    f = gzip.open(dataset, 'rb')\n    train_set, valid_set, test_set = cPickle.load(f)\n    f.close()\n    #train_set, valid_set, test_set format: tuple(input, target)\n    #input is an numpy.ndarray of 2 dimensions (a matrix)\n    #witch row's correspond to an example. target is a\n    #numpy.ndarray of 1 dimensions (vector)) that have the same length as\n    #the number of rows in the input. It should give the target\n    #target to the example with the same index in the input.\n\n    def shared_dataset(data_xy, borrow=True):\n        \"\"\" Function that loads the dataset into shared variables\n\n        The reason we store our dataset in shared variables is to allow\n        Theano to copy it into the GPU memory (when code is run on GPU).\n        Since copying data into the GPU is slow, copying a minibatch everytime\n        is needed (the default behaviour if the data is not in a shared\n        variable) would lead to a large decrease in performance.\n        \"\"\"\n        data_x, data_y = data_xy\n        shared_x = theano.shared(numpy.asarray(data_x,\n                                               dtype=theano.config.floatX),\n                                 borrow=borrow)\n        shared_y = theano.shared(numpy.asarray(data_y,\n                                               dtype=theano.config.floatX),\n                                 borrow=borrow)\n        # When storing data on the GPU it has to be stored as floats\n        # therefore we will store the labels as ``floatX`` as well\n        # (``shared_y`` does exactly that). But during our computations\n        # we need them as ints (we use labels as index, and if they are\n        # floats it doesn't make sense) therefore instead of returning\n        # ``shared_y`` we will have to cast it to int. This little hack\n        # lets ous get around this issue\n        return shared_x, T.cast(shared_y, 'int32')\n\n    test_set_x, test_set_y = shared_dataset(test_set)\n    valid_set_x, valid_set_y = shared_dataset(valid_set)\n    train_set_x, train_set_y = shared_dataset(train_set)\n\n    rval = [(train_set_x, train_set_y), (valid_set_x, valid_set_y),\n            (test_set_x, test_set_y)]\n    return rval\n\n\ndef sgd_optimization_mnist(learning_rate=0.13, n_epochs=1000,\n                           dataset='mnist.pkl.gz',\n                           batch_size=600):\n    \"\"\"\n    Demonstrate stochastic gradient descent optimization of a log-linear\n    model\n\n    This is demonstrated on MNIST.\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used (factor for the stochastic\n                          gradient)\n\n    :type n_epochs: int\n    :param n_epochs: maximal number of epochs to run the optimizer\n\n    :type dataset: string\n    :param dataset: the path of the MNIST dataset file from\n                 http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz\n\n    \"\"\"\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_valid_batches = valid_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_test_batches = test_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    ######################\n    # BUILD ACTUAL MODEL #\n    ######################\n    print '... building the model'\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()  # index to a [mini]batch\n\n    # generate symbolic variables for input (x and y represent a\n    # minibatch)\n    x = T.matrix('x')  # data, presented as rasterized images\n    y = T.ivector('y')  # labels, presented as 1D vector of [int] labels\n\n    # construct the logistic regression class\n    # Each MNIST image has size 28*28\n    classifier = LogisticRegression(input=x, n_in=28 * 28, n_out=10)\n\n    # the cost we minimize during training is the negative log likelihood of\n    # the model in symbolic format\n    cost = classifier.negative_log_likelihood(y)\n\n    # compiling a Theano function that computes the mistakes that are made by\n    # the model on a minibatch\n    test_model = theano.function(\n        inputs=[index],\n        outputs=classifier.errors(y),\n        givens={\n            x: test_set_x[index * batch_size: (index + 1) * batch_size],\n            y: test_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    validate_model = theano.function(\n        inputs=[index],\n        outputs=classifier.errors(y),\n        givens={\n            x: valid_set_x[index * batch_size: (index + 1) * batch_size],\n            y: valid_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n\n    # compute the gradient of cost with respect to theta = (W,b)\n    g_W = T.grad(cost=cost, wrt=classifier.W)\n    g_b = T.grad(cost=cost, wrt=classifier.b)\n\n    # start-snippet-3\n    # specify how to update the parameters of the model as a list of\n    # (variable, update expression) pairs.\n    updates = [(classifier.W, classifier.W - learning_rate * g_W),\n               (classifier.b, classifier.b - learning_rate * g_b)]\n\n    # compiling a Theano function `train_model` that returns the cost, but in\n    # the same time updates the parameter of the model based on the rules\n    # defined in `updates`\n    train_model = theano.function(\n        inputs=[index],\n        outputs=cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size],\n            y: train_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n    # end-snippet-3\n\n    ###############\n    # TRAIN MODEL #\n    ###############\n    print '... training the model'\n    # early-stopping parameters\n    patience = 5000  # look as this many examples regardless\n    patience_increase = 2  # wait this much longer when a new best is\n                                  # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                  # considered significant\n    validation_frequency = min(n_train_batches, patience / 2)\n                                  # go through this many\n                                  # minibatche before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_validation_loss = numpy.inf\n    test_score = 0.\n    start_time = time.clock()\n\n    done_looping = False\n    epoch = 0\n    while (epoch < n_epochs) and (not done_looping):\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n\n            minibatch_avg_cost = train_model(minibatch_index)\n            # iteration number\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n\n            if (iter + 1) % validation_frequency == 0:\n                # compute zero-one loss on validation set\n                validation_losses = [validate_model(i)\n                                     for i in xrange(n_valid_batches)]\n                this_validation_loss = numpy.mean(validation_losses)\n\n                print(\n                    'epoch %i, minibatch %i/%i, validation error %f %%' %\n                    (\n                        epoch,\n                        minibatch_index + 1,\n                        n_train_batches,\n                        this_validation_loss * 100.\n                    )\n                )\n\n                # if we got the best validation score until now\n                if this_validation_loss < best_validation_loss:\n                    #improve patience if loss improvement is good enough\n                    if this_validation_loss < best_validation_loss *  \\\n                       improvement_threshold:\n                        patience = max(patience, iter * patience_increase)\n\n                    best_validation_loss = this_validation_loss\n                    # test it on the test set\n\n                    test_losses = [test_model(i)\n                                   for i in xrange(n_test_batches)]\n                    test_score = numpy.mean(test_losses)\n\n                    print(\n                        (\n                            '     epoch %i, minibatch %i/%i, test error of'\n                            ' best model %f %%'\n                        ) %\n                        (\n                            epoch,\n                            minibatch_index + 1,\n                            n_train_batches,\n                            test_score * 100.\n                        )\n                    )\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    end_time = time.clock()\n    print(\n        (\n            'Optimization complete with best validation score of %f %%,'\n            'with test performance %f %%'\n        )\n        % (best_validation_loss * 100., test_score * 100.)\n    )\n    print 'The code run for %d epochs, with %f epochs/sec' % (\n        epoch, 1. * epoch / (end_time - start_time))\n    print >> sys.stderr, ('The code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.1fs' % ((end_time - start_time)))\n\nif __name__ == '__main__':\n    sgd_optimization_mnist()\n"
  },
  {
    "path": "DeepLearningTutorials/code/lstm.py",
    "content": "'''\nBuild a tweet sentiment analyzer\n'''\nfrom collections import OrderedDict\nimport cPickle as pkl\nimport random\nimport sys\nimport time\n\nimport numpy\nimport theano\nfrom theano import config\nimport theano.tensor as tensor\nfrom theano.sandbox.rng_mrg import MRG_RandomStreams as RandomStreams\n\nimport imdb\n\ndatasets = {'imdb': (imdb.load_data, imdb.prepare_data)}\n\n\ndef numpy_floatX(data):\n    return numpy.asarray(data, dtype=config.floatX)\n\n\ndef get_minibatches_idx(n, minibatch_size, shuffle=False):\n    \"\"\"\n    Used to shuffle the dataset at each iteration.\n    \"\"\"\n\n    idx_list = numpy.arange(n, dtype=\"int32\")\n\n    if shuffle:\n        random.shuffle(idx_list)\n\n    minibatches = []\n    minibatch_start = 0\n    for i in range(n // minibatch_size):\n        minibatches.append(idx_list[minibatch_start:\n                                    minibatch_start + minibatch_size])\n        minibatch_start += minibatch_size\n\n    if (minibatch_start != n):\n        # Make a minibatch out of what is left\n        minibatches.append(idx_list[minibatch_start:])\n\n    return zip(range(len(minibatches)), minibatches)\n\n\ndef get_dataset(name):\n    return datasets[name][0], datasets[name][1]\n\n\ndef zipp(params, tparams):\n    \"\"\"\n    When we reload the model. Needed for the GPU stuff.\n    \"\"\"\n    for kk, vv in params.iteritems():\n        tparams[kk].set_value(vv)\n\n\ndef unzip(zipped):\n    \"\"\"\n    When we pickle the model. Needed for the GPU stuff.\n    \"\"\"\n    new_params = OrderedDict()\n    for kk, vv in zipped.iteritems():\n        new_params[kk] = vv.get_value()\n    return new_params\n\n\ndef dropout_layer(state_before, use_noise, trng):\n    proj = tensor.switch(use_noise,\n                         (state_before *\n                          trng.binomial(state_before.shape,\n                                        p=0.5, n=1,\n                                        dtype=state_before.dtype)),\n                         state_before * 0.5)\n    return proj\n\n\ndef _p(pp, name):\n    return '%s_%s' % (pp, name)\n\n\ndef init_params(options):\n    \"\"\"\n    Global (not LSTM) parameter. For the embeding and the classifier.\n    \"\"\"\n    params = OrderedDict()\n    # embedding\n    randn = numpy.random.rand(options['n_words'],\n                              options['dim_proj'])\n    params['Wemb'] = (0.01 * randn).astype(config.floatX)\n    params = get_layer(options['encoder'])[0](options,\n                                              params,\n                                              prefix=options['encoder'])\n    # classifier\n    params['U'] = 0.01 * numpy.random.randn(options['dim_proj'],\n                                            options['ydim']).astype(config.floatX)\n    params['b'] = numpy.zeros((options['ydim'],)).astype(config.floatX)\n\n    return params\n\n\ndef load_params(path, params):\n    pp = numpy.load(path)\n    for kk, vv in params.iteritems():\n        if kk not in pp:\n            raise Warning('%s is not in the archive' % kk)\n        params[kk] = pp[kk]\n\n    return params\n\n\ndef init_tparams(params):\n    tparams = OrderedDict()\n    for kk, pp in params.iteritems():\n        tparams[kk] = theano.shared(params[kk], name=kk)\n    return tparams\n\n\ndef get_layer(name):\n    fns = layers[name]\n    return fns\n\n\ndef ortho_weight(ndim):\n    W = numpy.random.randn(ndim, ndim)\n    u, s, v = numpy.linalg.svd(W)\n    return u.astype(config.floatX)\n\n\ndef param_init_lstm(options, params, prefix='lstm'):\n    \"\"\"\n    Init the LSTM parameter:\n\n    :see: init_params\n    \"\"\"\n    W = numpy.concatenate([ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj'])], axis=1)\n    params[_p(prefix, 'W')] = W\n    U = numpy.concatenate([ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj']),\n                           ortho_weight(options['dim_proj'])], axis=1)\n    params[_p(prefix, 'U')] = U\n    b = numpy.zeros((4 * options['dim_proj'],))\n    params[_p(prefix, 'b')] = b.astype(config.floatX)\n\n    return params\n\n\ndef lstm_layer(tparams, state_below, options, prefix='lstm', mask=None):\n    nsteps = state_below.shape[0]\n    if state_below.ndim == 3:\n        n_samples = state_below.shape[1]\n    else:\n        n_samples = 1\n\n    assert mask is not None\n\n    def _slice(_x, n, dim):\n        if _x.ndim == 3:\n            return _x[:, :, n * dim:(n + 1) * dim]\n        return _x[:, n * dim:(n + 1) * dim]\n\n    def _step(m_, x_, h_, c_):\n        preact = tensor.dot(h_, tparams[_p(prefix, 'U')])\n        preact += x_\n        preact += tparams[_p(prefix, 'b')]\n\n        i = tensor.nnet.sigmoid(_slice(preact, 0, options['dim_proj']))\n        f = tensor.nnet.sigmoid(_slice(preact, 1, options['dim_proj']))\n        o = tensor.nnet.sigmoid(_slice(preact, 2, options['dim_proj']))\n        c = tensor.tanh(_slice(preact, 3, options['dim_proj']))\n\n        c = f * c_ + i * c\n        c = m_[:, None] * c + (1. - m_)[:, None] * c_\n\n        h = o * tensor.tanh(c)\n        h = m_[:, None] * h + (1. - m_)[:, None] * h_\n\n        return h, c\n\n    state_below = (tensor.dot(state_below, tparams[_p(prefix, 'W')]) +\n                   tparams[_p(prefix, 'b')])\n\n    dim_proj = options['dim_proj']\n    rval, updates = theano.scan(_step,\n                                sequences=[mask, state_below],\n                                outputs_info=[tensor.alloc(numpy_floatX(0.),\n                                                           n_samples,\n                                                           dim_proj),\n                                              tensor.alloc(numpy_floatX(0.),\n                                                           n_samples,\n                                                           dim_proj)],\n                                name=_p(prefix, '_layers'),\n                                n_steps=nsteps)\n    return rval[0]\n\n\n# ff: Feed Forward (normal neural net), only useful to put after lstm\n#     before the classifier.\nlayers = {'lstm': (param_init_lstm, lstm_layer)}\n\n\ndef sgd(lr, tparams, grads, x, mask, y, cost):\n    \"\"\" Stochastic Gradient Descent\n\n    :note: A more complicated version of sgd then needed.  This is\n        done like that for adadelta and rmsprop.\n\n    \"\"\"\n    # New set of shared variable that will contain the gradient\n    # for a mini-batch.\n    gshared = [theano.shared(p.get_value() * 0., name='%s_grad' % k)\n               for k, p in tparams.iteritems()]\n    gsup = [(gs, g) for gs, g in zip(gshared, grads)]\n\n    # Function that computes gradients for a mini-batch, but do not\n    # updates the weights.\n    f_grad_shared = theano.function([x, mask, y], cost, updates=gsup,\n                                    name='sgd_f_grad_shared')\n\n    pup = [(p, p - lr * g) for p, g in zip(tparams.values(), gshared)]\n\n    # Function that updates the weights from the previously computed\n    # gradient.\n    f_update = theano.function([lr], [], updates=pup,\n                               name='sgd_f_update')\n\n    return f_grad_shared, f_update\n\n\ndef adadelta(lr, tparams, grads, x, mask, y, cost):\n    zipped_grads = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                  name='%s_grad' % k)\n                    for k, p in tparams.iteritems()]\n    running_up2 = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                 name='%s_rup2' % k)\n                   for k, p in tparams.iteritems()]\n    running_grads2 = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                    name='%s_rgrad2' % k)\n                      for k, p in tparams.iteritems()]\n\n    zgup = [(zg, g) for zg, g in zip(zipped_grads, grads)]\n    rg2up = [(rg2, 0.95 * rg2 + 0.05 * (g ** 2))\n             for rg2, g in zip(running_grads2, grads)]\n\n    f_grad_shared = theano.function([x, mask, y], cost, updates=zgup + rg2up,\n                                    name='adadelta_f_grad_shared')\n\n    updir = [-tensor.sqrt(ru2 + 1e-6) / tensor.sqrt(rg2 + 1e-6) * zg\n             for zg, ru2, rg2 in zip(zipped_grads,\n                                     running_up2,\n                                     running_grads2)]\n    ru2up = [(ru2, 0.95 * ru2 + 0.05 * (ud ** 2))\n             for ru2, ud in zip(running_up2, updir)]\n    param_up = [(p, p + ud) for p, ud in zip(tparams.values(), updir)]\n\n    f_update = theano.function([lr], [], updates=ru2up + param_up,\n                               on_unused_input='ignore',\n                               name='adadelta_f_update')\n\n    return f_grad_shared, f_update\n\n\ndef rmsprop(lr, tparams, grads, x, mask, y, cost):\n    zipped_grads = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                  name='%s_grad' % k)\n                    for k, p in tparams.iteritems()]\n    running_grads = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                   name='%s_rgrad' % k)\n                     for k, p in tparams.iteritems()]\n    running_grads2 = [theano.shared(p.get_value() * numpy_floatX(0.),\n                                    name='%s_rgrad2' % k)\n                      for k, p in tparams.iteritems()]\n\n    zgup = [(zg, g) for zg, g in zip(zipped_grads, grads)]\n    rgup = [(rg, 0.95 * rg + 0.05 * g) for rg, g in zip(running_grads, grads)]\n    rg2up = [(rg2, 0.95 * rg2 + 0.05 * (g ** 2))\n             for rg2, g in zip(running_grads2, grads)]\n\n    f_grad_shared = theano.function([x, mask, y], cost,\n                                    updates=zgup + rgup + rg2up,\n                                    name='rmsprop_f_grad_shared')\n\n    updir = [theano.shared(p.get_value() * numpy_floatX(0.),\n                           name='%s_updir' % k)\n             for k, p in tparams.iteritems()]\n    updir_new = [(ud, 0.9 * ud - 1e-4 * zg / tensor.sqrt(rg2 - rg ** 2 + 1e-4))\n                 for ud, zg, rg, rg2 in zip(updir, zipped_grads, running_grads,\n                                            running_grads2)]\n    param_up = [(p, p + udn[1])\n                for p, udn in zip(tparams.values(), updir_new)]\n    f_update = theano.function([lr], [], updates=updir_new + param_up,\n                               on_unused_input='ignore',\n                               name='rmsprop_f_update')\n\n    return f_grad_shared, f_update\n\n\ndef build_model(tparams, options):\n    trng = RandomStreams(1234)\n\n    # Used for dropout.\n    use_noise = theano.shared(numpy_floatX(0.))\n\n    x = tensor.matrix('x', dtype='int64')\n    mask = tensor.matrix('mask', dtype=config.floatX)\n    y = tensor.vector('y', dtype='int64')\n\n    n_timesteps = x.shape[0]\n    n_samples = x.shape[1]\n\n    emb = tparams['Wemb'][x.flatten()].reshape([n_timesteps,\n                                                n_samples,\n                                                options['dim_proj']])\n    proj = get_layer(options['encoder'])[1](tparams, emb, options,\n                                            prefix=options['encoder'],\n                                            mask=mask)\n    if options['encoder'] == 'lstm':\n        proj = (proj * mask[:, :, None]).sum(axis=0)\n        proj = proj / mask.sum(axis=0)[:, None]\n    if options['use_dropout']:\n        proj = dropout_layer(proj, use_noise, trng)\n\n    pred = tensor.nnet.softmax(tensor.dot(proj, tparams['U']) + tparams['b'])\n\n    f_pred_prob = theano.function([x, mask], pred, name='f_pred_prob')\n    f_pred = theano.function([x, mask], pred.argmax(axis=1), name='f_pred')\n\n    cost = -tensor.log(pred[tensor.arange(n_samples), y] + 1e-8).mean()\n\n    return use_noise, x, mask, y, f_pred_prob, f_pred, cost\n\n\ndef pred_probs(f_pred_prob, prepare_data, data, iterator, verbose=False):\n    \"\"\" If you want to use a trained model, this is useful to compute\n    the probabilities of new examples.\n    \"\"\"\n    n_samples = len(data[0])\n    probs = numpy.zeros((n_samples, 2)).astype(config.floatX)\n\n    n_done = 0\n\n    for _, valid_index in iterator:\n        x, mask, y = prepare_data([data[0][t] for t in valid_index],\n                                  numpy.array(data[1])[valid_index],\n                                  maxlen=None)\n        pred_probs = f_pred_prob(x, mask)\n        probs[valid_index, :] = pred_probs\n\n        n_done += len(valid_index)\n        if verbose:\n            print '%d/%d samples classified' % (n_done, n_samples)\n\n    return probs\n\n\ndef pred_error(f_pred, prepare_data, data, iterator, verbose=False):\n    \"\"\"\n    Just compute the error\n    f_pred: Theano fct computing the prediction\n    prepare_data: usual prepare_data for that dataset.\n    \"\"\"\n    valid_err = 0\n    for _, valid_index in iterator:\n        x, mask, y = prepare_data([data[0][t] for t in valid_index],\n                                  numpy.array(data[1])[valid_index],\n                                  maxlen=None)\n        preds = f_pred(x, mask)\n        targets = numpy.array(data[1])[valid_index]\n        valid_err += (preds == targets).sum()\n    valid_err = 1. - numpy_floatX(valid_err) / len(data[0])\n\n    return valid_err\n\n\ndef train_lstm(\n    dim_proj=128,  # word embeding dimension and LSTM number of hidden units.\n    patience=10,  # Number of epoch to wait before early stop if no progress\n    max_epochs=5000,  # The maximum number of epoch to run\n    dispFreq=10,  # Display to stdout the training progress every N updates\n    decay_c=0.,  # Weight decay for the classifier applied to the U weights.\n    lrate=0.0001,  # Learning rate for sgd (not used for adadelta and rmsprop)\n    n_words=10000,  # Vocabulary size\n    optimizer=adadelta,  # sgd, adadelta and rmsprop available, sgd very hard to use, not recommanded (probably need momentum and decaying learning rate).\n    encoder='lstm',  # TODO: can be removed must be lstm.\n    saveto='lstm_model.npz',  # The best model will be saved there\n    validFreq=370,  # Compute the validation error after this number of update.\n    saveFreq=1110,  # Save the parameters after every saveFreq updates\n    maxlen=100,  # Sequence longer then this get ignored\n    batch_size=16,  # The batch size during training.\n    valid_batch_size=64,  # The batch size used for validation/test set.\n    dataset='imdb',\n\n    # Parameter for extra option\n    noise_std=0.,\n    use_dropout=True,  # if False slightly faster, but worst test error\n                       # This frequently need a bigger model.\n    reload_model=\"\",  # Path to a saved model we want to start from.\n    test_size=-1,  # If >0, we keep only this number of test example.\n):\n\n    # Model options\n    model_options = locals().copy()\n    print \"model options\", model_options\n\n    load_data, prepare_data = get_dataset(dataset)\n\n    print 'Loading data'\n    train, valid, test = load_data(n_words=n_words, valid_portion=0.05,\n                                   maxlen=maxlen)\n    if test_size > 0:\n        # The test set is sorted by size, but we want to keep random\n        # size example.  So we must select a random selection of the\n        # examples.\n        idx = numpy.arange(len(test[0]))\n        random.shuffle(idx)\n        idx = idx[:test_size]\n        test = ([test[0][n] for n in idx], [test[1][n] for n in idx])\n\n    ydim = numpy.max(train[1]) + 1\n\n    model_options['ydim'] = ydim\n\n    print 'Building model'\n    # This create the initial parameters as numpy ndarrays.\n    # Dict name (string) -> numpy ndarray\n    params = init_params(model_options)\n\n    if reload_model:\n        load_params('lstm_model.npz', params)\n\n    # This create Theano Shared Variable from the parameters.\n    # Dict name (string) -> Theano Tensor Shared Variable\n    # params and tparams have different copy of the weights.\n    tparams = init_tparams(params)\n\n    # use_noise is for dropout\n    (use_noise, x, mask,\n     y, f_pred_prob, f_pred, cost) = build_model(tparams, model_options)\n\n    if decay_c > 0.:\n        decay_c = theano.shared(numpy_floatX(decay_c), name='decay_c')\n        weight_decay = 0.\n        weight_decay += (tparams['U'] ** 2).sum()\n        weight_decay *= decay_c\n        cost += weight_decay\n\n    f_cost = theano.function([x, mask, y], cost, name='f_cost')\n\n    grads = tensor.grad(cost, wrt=tparams.values())\n    f_grad = theano.function([x, mask, y], grads, name='f_grad')\n\n    lr = tensor.scalar(name='lr')\n    f_grad_shared, f_update = optimizer(lr, tparams, grads,\n                                        x, mask, y, cost)\n\n    print 'Optimization'\n\n    kf_valid = get_minibatches_idx(len(valid[0]), valid_batch_size)\n    kf_test = get_minibatches_idx(len(test[0]), valid_batch_size)\n\n    print \"%d train examples\" % len(train[0])\n    print \"%d valid examples\" % len(valid[0])\n    print \"%d test examples\" % len(test[0])\n    history_errs = []\n    best_p = None\n    bad_count = 0\n\n    if validFreq == -1:\n        validFreq = len(train[0]) / batch_size\n    if saveFreq == -1:\n        saveFreq = len(train[0]) / batch_size\n\n    uidx = 0  # the number of update done\n    estop = False  # early stop\n    start_time = time.clock()\n    try:\n        for eidx in xrange(max_epochs):\n            n_samples = 0\n\n            # Get new shuffled index for the training set.\n            kf = get_minibatches_idx(len(train[0]), batch_size, shuffle=True)\n\n            for _, train_index in kf:\n                uidx += 1\n                use_noise.set_value(1.)\n\n                # Select the random examples for this minibatch\n                y = [train[1][t] for t in train_index]\n                x = [train[0][t]for t in train_index]\n\n                # Get the data in numpy.ndarray format\n                # This swap the axis!\n                # Return something of shape (minibatch maxlen, n samples)\n                x, mask, y = prepare_data(x, y)\n                n_samples += x.shape[1]\n\n                cost = f_grad_shared(x, mask, y)\n                f_update(lrate)\n\n                if numpy.isnan(cost) or numpy.isinf(cost):\n                    print 'NaN detected'\n                    return 1., 1., 1.\n\n                if numpy.mod(uidx, dispFreq) == 0:\n                    print 'Epoch ', eidx, 'Update ', uidx, 'Cost ', cost\n\n                if saveto and numpy.mod(uidx, saveFreq) == 0:\n                    print 'Saving...',\n\n                    if best_p is not None:\n                        params = best_p\n                    else:\n                        params = unzip(tparams)\n                    numpy.savez(saveto, history_errs=history_errs, **params)\n                    pkl.dump(model_options, open('%s.pkl' % saveto, 'wb'), -1)\n                    print 'Done'\n\n                if numpy.mod(uidx, validFreq) == 0:\n                    use_noise.set_value(0.)\n                    train_err = pred_error(f_pred, prepare_data, train, kf)\n                    valid_err = pred_error(f_pred, prepare_data, valid,\n                                           kf_valid)\n                    test_err = pred_error(f_pred, prepare_data, test, kf_test)\n\n                    history_errs.append([valid_err, test_err])\n\n                    if (uidx == 0 or\n                        valid_err <= numpy.array(history_errs)[:,\n                                                               0].min()):\n\n                        best_p = unzip(tparams)\n                        bad_counter = 0\n\n                    print ('Train ', train_err, 'Valid ', valid_err,\n                           'Test ', test_err)\n\n                    if (len(history_errs) > patience and\n                        valid_err >= numpy.array(history_errs)[:-patience,\n                                                               0].min()):\n                        bad_counter += 1\n                        if bad_counter > patience:\n                            print 'Early Stop!'\n                            estop = True\n                            break\n\n            print 'Seen %d samples' % n_samples\n\n            if estop:\n                break\n\n    except KeyboardInterrupt:\n        print \"Training interupted\"\n\n    end_time = time.clock()\n    if best_p is not None:\n        zipp(best_p, tparams)\n    else:\n        best_p = unzip(tparams)\n\n    use_noise.set_value(0.)\n    kf_train_sorted = get_minibatches_idx(len(train[0]), batch_size)\n    train_err = pred_error(f_pred, prepare_data, train, kf_train_sorted)\n    valid_err = pred_error(f_pred, prepare_data, valid, kf_valid)\n    test_err = pred_error(f_pred, prepare_data, test, kf_test)\n\n    print 'Train ', train_err, 'Valid ', valid_err, 'Test ', test_err\n    if saveto:\n        numpy.savez(saveto, train_err=train_err,\n                    valid_err=valid_err, test_err=test_err,\n                    history_errs=history_errs, **best_p)\n    print 'The code run for %d epochs, with %f sec/epochs' % (\n        (eidx + 1), (end_time - start_time) / (1. * (eidx + 1)))\n    print >> sys.stderr, ('Training took %.1fs' %\n                          (end_time - start_time))\n    return train_err, valid_err, test_err\n\n\nif __name__ == '__main__':\n    # See function train for all possible parameter and there definition.\n    train_lstm(\n        #reload_model=\"lstm_model.npz\",\n        max_epochs=100,\n        test_size=500,\n    )\n"
  },
  {
    "path": "DeepLearningTutorials/code/mlp.py",
    "content": "\"\"\"\nThis tutorial introduces the multilayer perceptron using Theano.\n\n A multilayer perceptron is a logistic regressor where\ninstead of feeding the input to the logistic regression you insert a\nintermediate layer, called the hidden layer, that has a nonlinear\nactivation function (usually tanh or sigmoid) . One can use many such\nhidden layers making the architecture deep. The tutorial will also tackle\nthe problem of MNIST digit classification.\n\n.. math::\n\n    f(x) = G( b^{(2)} + W^{(2)}( s( b^{(1)} + W^{(1)} x))),\n\nReferences:\n\n    - textbooks: \"Pattern Recognition and Machine Learning\" -\n                 Christopher M. Bishop, section 5\n\n\"\"\"\n__docformat__ = 'restructedtext en'\n\n\nimport os\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\n\n\nfrom logistic_sgd import LogisticRegression, load_data\n\n\n# start-snippet-1\nclass HiddenLayer(object):\n    def __init__(self, rng, input, n_in, n_out, W=None, b=None,\n                 activation=T.tanh):\n        \"\"\"\n        Typical hidden layer of a MLP: units are fully-connected and have\n        sigmoidal activation function. Weight matrix W is of shape (n_in,n_out)\n        and the bias vector b is of shape (n_out,).\n\n        NOTE : The nonlinearity used here is tanh\n\n        Hidden unit activation is given by: tanh(dot(input,W) + b)\n\n        :type rng: numpy.random.RandomState\n        :param rng: a random number generator used to initialize weights\n\n        :type input: theano.tensor.dmatrix\n        :param input: a symbolic tensor of shape (n_examples, n_in)\n\n        :type n_in: int\n        :param n_in: dimensionality of input\n\n        :type n_out: int\n        :param n_out: number of hidden units\n\n        :type activation: theano.Op or function\n        :param activation: Non linearity to be applied in the hidden\n                           layer\n        \"\"\"\n        self.input = input\n        # end-snippet-1\n\n        # `W` is initialized with `W_values` which is uniformely sampled\n        # from sqrt(-6./(n_in+n_hidden)) and sqrt(6./(n_in+n_hidden))\n        # for tanh activation function\n        # the output of uniform if converted using asarray to dtype\n        # theano.config.floatX so that the code is runable on GPU\n        # Note : optimal initialization of weights is dependent on the\n        #        activation function used (among other things).\n        #        For example, results presented in [Xavier10] suggest that you\n        #        should use 4 times larger initial weights for sigmoid\n        #        compared to tanh\n        #        We have no info for other function, so we use the same as\n        #        tanh.\n        if W is None:\n            W_values = numpy.asarray(\n                rng.uniform(\n                    low=-numpy.sqrt(6. / (n_in + n_out)),\n                    high=numpy.sqrt(6. / (n_in + n_out)),\n                    size=(n_in, n_out)\n                ),\n                dtype=theano.config.floatX\n            )\n            if activation == theano.tensor.nnet.sigmoid:\n                W_values *= 4\n\n            W = theano.shared(value=W_values, name='W', borrow=True)\n\n        if b is None:\n            b_values = numpy.zeros((n_out,), dtype=theano.config.floatX)\n            b = theano.shared(value=b_values, name='b', borrow=True)\n\n        self.W = W\n        self.b = b\n\n        lin_output = T.dot(input, self.W) + self.b\n        self.output = (\n            lin_output if activation is None\n            else activation(lin_output)\n        )\n        # parameters of the model\n        self.params = [self.W, self.b]\n\n\n# start-snippet-2\nclass MLP(object):\n    \"\"\"Multi-Layer Perceptron Class\n\n    A multilayer perceptron is a feedforward artificial neural network model\n    that has one layer or more of hidden units and nonlinear activations.\n    Intermediate layers usually have as activation function tanh or the\n    sigmoid function (defined here by a ``HiddenLayer`` class)  while the\n    top layer is a softamx layer (defined here by a ``LogisticRegression``\n    class).\n    \"\"\"\n\n    def __init__(self, rng, input, n_in, n_hidden, n_out):\n        \"\"\"Initialize the parameters for the multilayer perceptron\n\n        :type rng: numpy.random.RandomState\n        :param rng: a random number generator used to initialize weights\n\n        :type input: theano.tensor.TensorType\n        :param input: symbolic variable that describes the input of the\n        architecture (one minibatch)\n\n        :type n_in: int\n        :param n_in: number of input units, the dimension of the space in\n        which the datapoints lie\n\n        :type n_hidden: int\n        :param n_hidden: number of hidden units\n\n        :type n_out: int\n        :param n_out: number of output units, the dimension of the space in\n        which the labels lie\n\n        \"\"\"\n\n        # Since we are dealing with a one hidden layer MLP, this will translate\n        # into a HiddenLayer with a tanh activation function connected to the\n        # LogisticRegression layer; the activation function can be replaced by\n        # sigmoid or any other nonlinear function\n        self.hiddenLayer = HiddenLayer(\n            rng=rng,\n            input=input,\n            n_in=n_in,\n            n_out=n_hidden,\n            activation=T.tanh\n        )\n\n        # The logistic regression layer gets as input the hidden units\n        # of the hidden layer\n        self.logRegressionLayer = LogisticRegression(\n            input=self.hiddenLayer.output,\n            n_in=n_hidden,\n            n_out=n_out\n        )\n        # end-snippet-2 start-snippet-3\n        # L1 norm ; one regularization option is to enforce L1 norm to\n        # be small\n        self.L1 = (\n            abs(self.hiddenLayer.W).sum()\n            + abs(self.logRegressionLayer.W).sum()\n        )\n\n        # square of L2 norm ; one regularization option is to enforce\n        # square of L2 norm to be small\n        self.L2_sqr = (\n            (self.hiddenLayer.W ** 2).sum()\n            + (self.logRegressionLayer.W ** 2).sum()\n        )\n\n        # negative log likelihood of the MLP is given by the negative\n        # log likelihood of the output of the model, computed in the\n        # logistic regression layer\n        self.negative_log_likelihood = (\n            self.logRegressionLayer.negative_log_likelihood\n        )\n        # same holds for the function computing the number of errors\n        self.errors = self.logRegressionLayer.errors\n\n        # the parameters of the model are the parameters of the two layer it is\n        # made out of\n        self.params = self.hiddenLayer.params + self.logRegressionLayer.params\n        # end-snippet-3\n\n\ndef test_mlp(learning_rate=0.01, L1_reg=0.00, L2_reg=0.0001, n_epochs=1000,\n             dataset='mnist.pkl.gz', batch_size=20, n_hidden=500):\n    \"\"\"\n    Demonstrate stochastic gradient descent optimization for a multilayer\n    perceptron\n\n    This is demonstrated on MNIST.\n\n    :type learning_rate: float\n    :param learning_rate: learning rate used (factor for the stochastic\n    gradient\n\n    :type L1_reg: float\n    :param L1_reg: L1-norm's weight when added to the cost (see\n    regularization)\n\n    :type L2_reg: float\n    :param L2_reg: L2-norm's weight when added to the cost (see\n    regularization)\n\n    :type n_epochs: int\n    :param n_epochs: maximal number of epochs to run the optimizer\n\n    :type dataset: string\n    :param dataset: the path of the MNIST dataset file from\n                 http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz\n\n\n   \"\"\"\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    valid_set_x, valid_set_y = datasets[1]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_valid_batches = valid_set_x.get_value(borrow=True).shape[0] / batch_size\n    n_test_batches = test_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    ######################\n    # BUILD ACTUAL MODEL #\n    ######################\n    print '... building the model'\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()  # index to a [mini]batch\n    x = T.matrix('x')  # the data is presented as rasterized images\n    y = T.ivector('y')  # the labels are presented as 1D vector of\n                        # [int] labels\n\n    rng = numpy.random.RandomState(1234)\n\n    # construct the MLP class\n    classifier = MLP(\n        rng=rng,\n        input=x,\n        n_in=28 * 28,\n        n_hidden=n_hidden,\n        n_out=10\n    )\n\n    # start-snippet-4\n    # the cost we minimize during training is the negative log likelihood of\n    # the model plus the regularization terms (L1 and L2); cost is expressed\n    # here symbolically\n    cost = (\n        classifier.negative_log_likelihood(y)\n        + L1_reg * classifier.L1\n        + L2_reg * classifier.L2_sqr\n    )\n    # end-snippet-4\n\n    # compiling a Theano function that computes the mistakes that are made\n    # by the model on a minibatch\n    test_model = theano.function(\n        inputs=[index],\n        outputs=classifier.errors(y),\n        givens={\n            x: test_set_x[index * batch_size:(index + 1) * batch_size],\n            y: test_set_y[index * batch_size:(index + 1) * batch_size]\n        }\n    )\n\n    validate_model = theano.function(\n        inputs=[index],\n        outputs=classifier.errors(y),\n        givens={\n            x: valid_set_x[index * batch_size:(index + 1) * batch_size],\n            y: valid_set_y[index * batch_size:(index + 1) * batch_size]\n        }\n    )\n\n    # start-snippet-5\n    # compute the gradient of cost with respect to theta (sotred in params)\n    # the resulting gradients will be stored in a list gparams\n    gparams = [T.grad(cost, param) for param in classifier.params]\n\n    # specify how to update the parameters of the model as a list of\n    # (variable, update expression) pairs\n\n    # given two list the zip A = [a1, a2, a3, a4] and B = [b1, b2, b3, b4] of\n    # same length, zip generates a list C of same size, where each element\n    # is a pair formed from the two lists :\n    #    C = [(a1, b1), (a2, b2), (a3, b3), (a4, b4)]\n    updates = [\n        (param, param - learning_rate * gparam)\n        for param, gparam in zip(classifier.params, gparams)\n    ]\n\n    # compiling a Theano function `train_model` that returns the cost, but\n    # in the same time updates the parameter of the model based on the rules\n    # defined in `updates`\n    train_model = theano.function(\n        inputs=[index],\n        outputs=cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size],\n            y: train_set_y[index * batch_size: (index + 1) * batch_size]\n        }\n    )\n    # end-snippet-5\n\n    ###############\n    # TRAIN MODEL #\n    ###############\n    print '... training'\n\n    # early-stopping parameters\n    patience = 10000  # look as this many examples regardless\n    patience_increase = 2  # wait this much longer when a new best is\n                           # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                   # considered significant\n    validation_frequency = min(n_train_batches, patience / 2)\n                                  # go through this many\n                                  # minibatche before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_validation_loss = numpy.inf\n    best_iter = 0\n    test_score = 0.\n    start_time = time.clock()\n\n    epoch = 0\n    done_looping = False\n\n    while (epoch < n_epochs) and (not done_looping):\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n\n            minibatch_avg_cost = train_model(minibatch_index)\n            # iteration number\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n\n            if (iter + 1) % validation_frequency == 0:\n                # compute zero-one loss on validation set\n                validation_losses = [validate_model(i) for i\n                                     in xrange(n_valid_batches)]\n                this_validation_loss = numpy.mean(validation_losses)\n\n                print(\n                    'epoch %i, minibatch %i/%i, validation error %f %%' %\n                    (\n                        epoch,\n                        minibatch_index + 1,\n                        n_train_batches,\n                        this_validation_loss * 100.\n                    )\n                )\n\n                # if we got the best validation score until now\n                if this_validation_loss < best_validation_loss:\n                    #improve patience if loss improvement is good enough\n                    if (\n                        this_validation_loss < best_validation_loss *\n                        improvement_threshold\n                    ):\n                        patience = max(patience, iter * patience_increase)\n\n                    best_validation_loss = this_validation_loss\n                    best_iter = iter\n\n                    # test it on the test set\n                    test_losses = [test_model(i) for i\n                                   in xrange(n_test_batches)]\n                    test_score = numpy.mean(test_losses)\n\n                    print(('     epoch %i, minibatch %i/%i, test error of '\n                           'best model %f %%') %\n                          (epoch, minibatch_index + 1, n_train_batches,\n                           test_score * 100.))\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    end_time = time.clock()\n    print(('Optimization complete. Best validation score of %f %% '\n           'obtained at iteration %i, with test performance %f %%') %\n          (best_validation_loss * 100., best_iter + 1, test_score * 100.))\n    print >> sys.stderr, ('The code for file ' +\n                          os.path.split(__file__)[1] +\n                          ' ran for %.2fm' % ((end_time - start_time) / 60.))\n\n\nif __name__ == '__main__':\n    test_mlp()\n"
  },
  {
    "path": "DeepLearningTutorials/code/rbm.py",
    "content": "\"\"\"This tutorial introduces restricted boltzmann machines (RBM) using Theano.\n\nBoltzmann Machines (BMs) are a particular form of energy-based model which\ncontain hidden variables. Restricted Boltzmann Machines further restrict BMs\nto those without visible-visible and hidden-hidden connections.\n\"\"\"\nimport time\n\ntry:\n    import PIL.Image as Image\nexcept ImportError:\n    import Image\n\nimport numpy\n\nimport theano\nimport theano.tensor as T\nimport os\n\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\nfrom utils import tile_raster_images\nfrom logistic_sgd import load_data\n\n\n# start-snippet-1\nclass RBM(object):\n    \"\"\"Restricted Boltzmann Machine (RBM)  \"\"\"\n    def __init__(\n        self,\n        input=None,\n        n_visible=784,\n        n_hidden=500,\n        W=None,\n        hbias=None,\n        vbias=None,\n        numpy_rng=None,\n        theano_rng=None\n    ):\n        \"\"\"\n        RBM constructor. Defines the parameters of the model along with\n        basic operations for inferring hidden from visible (and vice-versa),\n        as well as for performing CD updates.\n\n        :param input: None for standalone RBMs or symbolic variable if RBM is\n        part of a larger graph.\n\n        :param n_visible: number of visible units\n\n        :param n_hidden: number of hidden units\n\n        :param W: None for standalone RBMs or symbolic variable pointing to a\n        shared weight matrix in case RBM is part of a DBN network; in a DBN,\n        the weights are shared between RBMs and layers of a MLP\n\n        :param hbias: None for standalone RBMs or symbolic variable pointing\n        to a shared hidden units bias vector in case RBM is part of a\n        different network\n\n        :param vbias: None for standalone RBMs or a symbolic variable\n        pointing to a shared visible units bias\n        \"\"\"\n\n        self.n_visible = n_visible\n        self.n_hidden = n_hidden\n\n        if numpy_rng is None:\n            # create a number generator\n            numpy_rng = numpy.random.RandomState(1234)\n\n        if theano_rng is None:\n            theano_rng = RandomStreams(numpy_rng.randint(2 ** 30))\n\n        if W is None:\n            # W is initialized with `initial_W` which is uniformely\n            # sampled from -4*sqrt(6./(n_visible+n_hidden)) and\n            # 4*sqrt(6./(n_hidden+n_visible)) the output of uniform if\n            # converted using asarray to dtype theano.config.floatX so\n            # that the code is runable on GPU\n            initial_W = numpy.asarray(\n                numpy_rng.uniform(\n                    low=-4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    high=4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                    size=(n_visible, n_hidden)\n                ),\n                dtype=theano.config.floatX\n            )\n            # theano shared variables for weights and biases\n            W = theano.shared(value=initial_W, name='W', borrow=True)\n\n        if hbias is None:\n            # create shared variable for hidden units bias\n            hbias = theano.shared(\n                value=numpy.zeros(\n                    n_hidden,\n                    dtype=theano.config.floatX\n                ),\n                name='hbias',\n                borrow=True\n            )\n\n        if vbias is None:\n            # create shared variable for visible units bias\n            vbias = theano.shared(\n                value=numpy.zeros(\n                    n_visible,\n                    dtype=theano.config.floatX\n                ),\n                name='vbias',\n                borrow=True\n            )\n\n        # initialize input layer for standalone RBM or layer0 of DBN\n        self.input = input\n        if not input:\n            self.input = T.matrix('input')\n\n        self.W = W\n        self.hbias = hbias\n        self.vbias = vbias\n        self.theano_rng = theano_rng\n        # **** WARNING: It is not a good idea to put things in this list\n        # other than shared variables created in this function.\n        self.params = [self.W, self.hbias, self.vbias]\n        # end-snippet-1\n\n    def free_energy(self, v_sample):\n        ''' Function to compute the free energy '''\n        wx_b = T.dot(v_sample, self.W) + self.hbias\n        vbias_term = T.dot(v_sample, self.vbias)\n        hidden_term = T.sum(T.log(1 + T.exp(wx_b)), axis=1)\n        return -hidden_term - vbias_term\n\n    def propup(self, vis):\n        '''This function propagates the visible units activation upwards to\n        the hidden units\n\n        Note that we return also the pre-sigmoid activation of the\n        layer. As it will turn out later, due to how Theano deals with\n        optimizations, this symbolic variable will be needed to write\n        down a more stable computational graph (see details in the\n        reconstruction cost function)\n\n        '''\n        pre_sigmoid_activation = T.dot(vis, self.W) + self.hbias\n        return [pre_sigmoid_activation, T.nnet.sigmoid(pre_sigmoid_activation)]\n\n    def sample_h_given_v(self, v0_sample):\n        ''' This function infers state of hidden units given visible units '''\n        # compute the activation of the hidden units given a sample of\n        # the visibles\n        pre_sigmoid_h1, h1_mean = self.propup(v0_sample)\n        # get a sample of the hiddens given their activation\n        # Note that theano_rng.binomial returns a symbolic sample of dtype\n        # int64 by default. If we want to keep our computations in floatX\n        # for the GPU we need to specify to return the dtype floatX\n        h1_sample = self.theano_rng.binomial(size=h1_mean.shape,\n                                             n=1, p=h1_mean,\n                                             dtype=theano.config.floatX)\n        return [pre_sigmoid_h1, h1_mean, h1_sample]\n\n    def propdown(self, hid):\n        '''This function propagates the hidden units activation downwards to\n        the visible units\n\n        Note that we return also the pre_sigmoid_activation of the\n        layer. As it will turn out later, due to how Theano deals with\n        optimizations, this symbolic variable will be needed to write\n        down a more stable computational graph (see details in the\n        reconstruction cost function)\n\n        '''\n        pre_sigmoid_activation = T.dot(hid, self.W.T) + self.vbias\n        return [pre_sigmoid_activation, T.nnet.sigmoid(pre_sigmoid_activation)]\n\n    def sample_v_given_h(self, h0_sample):\n        ''' This function infers state of visible units given hidden units '''\n        # compute the activation of the visible given the hidden sample\n        pre_sigmoid_v1, v1_mean = self.propdown(h0_sample)\n        # get a sample of the visible given their activation\n        # Note that theano_rng.binomial returns a symbolic sample of dtype\n        # int64 by default. If we want to keep our computations in floatX\n        # for the GPU we need to specify to return the dtype floatX\n        v1_sample = self.theano_rng.binomial(size=v1_mean.shape,\n                                             n=1, p=v1_mean,\n                                             dtype=theano.config.floatX)\n        return [pre_sigmoid_v1, v1_mean, v1_sample]\n\n    def gibbs_hvh(self, h0_sample):\n        ''' This function implements one step of Gibbs sampling,\n            starting from the hidden state'''\n        pre_sigmoid_v1, v1_mean, v1_sample = self.sample_v_given_h(h0_sample)\n        pre_sigmoid_h1, h1_mean, h1_sample = self.sample_h_given_v(v1_sample)\n        return [pre_sigmoid_v1, v1_mean, v1_sample,\n                pre_sigmoid_h1, h1_mean, h1_sample]\n\n    def gibbs_vhv(self, v0_sample):\n        ''' This function implements one step of Gibbs sampling,\n            starting from the visible state'''\n        pre_sigmoid_h1, h1_mean, h1_sample = self.sample_h_given_v(v0_sample)\n        pre_sigmoid_v1, v1_mean, v1_sample = self.sample_v_given_h(h1_sample)\n        return [pre_sigmoid_h1, h1_mean, h1_sample,\n                pre_sigmoid_v1, v1_mean, v1_sample]\n\n    # start-snippet-2\n    def get_cost_updates(self, lr=0.1, persistent=None, k=1):\n        \"\"\"This functions implements one step of CD-k or PCD-k\n\n        :param lr: learning rate used to train the RBM\n\n        :param persistent: None for CD. For PCD, shared variable\n            containing old state of Gibbs chain. This must be a shared\n            variable of size (batch size, number of hidden units).\n\n        :param k: number of Gibbs steps to do in CD-k/PCD-k\n\n        Returns a proxy for the cost and the updates dictionary. The\n        dictionary contains the update rules for weights and biases but\n        also an update of the shared variable used to store the persistent\n        chain, if one is used.\n\n        \"\"\"\n\n        # compute positive phase\n        pre_sigmoid_ph, ph_mean, ph_sample = self.sample_h_given_v(self.input)\n\n        # decide how to initialize persistent chain:\n        # for CD, we use the newly generate hidden sample\n        # for PCD, we initialize from the old state of the chain\n        if persistent is None:\n            chain_start = ph_sample\n        else:\n            chain_start = persistent\n        # end-snippet-2\n        # perform actual negative phase\n        # in order to implement CD-k/PCD-k we need to scan over the\n        # function that implements one gibbs step k times.\n        # Read Theano tutorial on scan for more information :\n        # http://deeplearning.net/software/theano/library/scan.html\n        # the scan will return the entire Gibbs chain\n        (\n            [\n                pre_sigmoid_nvs,\n                nv_means,\n                nv_samples,\n                pre_sigmoid_nhs,\n                nh_means,\n                nh_samples\n            ],\n            updates\n        ) = theano.scan(\n            self.gibbs_hvh,\n            # the None are place holders, saying that\n            # chain_start is the initial state corresponding to the\n            # 6th output\n            outputs_info=[None, None, None, None, None, chain_start],\n            n_steps=k\n        )\n        # start-snippet-3\n        # determine gradients on RBM parameters\n        # note that we only need the sample at the end of the chain\n        chain_end = nv_samples[-1]\n\n        cost = T.mean(self.free_energy(self.input)) - T.mean(\n            self.free_energy(chain_end))\n        # We must not compute the gradient through the gibbs sampling\n        gparams = T.grad(cost, self.params, consider_constant=[chain_end])\n        # end-snippet-3 start-snippet-4\n        # constructs the update dictionary\n        for gparam, param in zip(gparams, self.params):\n            # make sure that the learning rate is of the right dtype\n            updates[param] = param - gparam * T.cast(\n                lr,\n                dtype=theano.config.floatX\n            )\n        if persistent:\n            # Note that this works only if persistent is a shared variable\n            updates[persistent] = nh_samples[-1]\n            # pseudo-likelihood is a better proxy for PCD\n            monitoring_cost = self.get_pseudo_likelihood_cost(updates)\n        else:\n            # reconstruction cross-entropy is a better proxy for CD\n            monitoring_cost = self.get_reconstruction_cost(updates,\n                                                           pre_sigmoid_nvs[-1])\n\n        return monitoring_cost, updates\n        # end-snippet-4\n\n    def get_pseudo_likelihood_cost(self, updates):\n        \"\"\"Stochastic approximation to the pseudo-likelihood\"\"\"\n\n        # index of bit i in expression p(x_i | x_{\\i})\n        bit_i_idx = theano.shared(value=0, name='bit_i_idx')\n\n        # binarize the input image by rounding to nearest integer\n        xi = T.round(self.input)\n\n        # calculate free energy for the given bit configuration\n        fe_xi = self.free_energy(xi)\n\n        # flip bit x_i of matrix xi and preserve all other bits x_{\\i}\n        # Equivalent to xi[:,bit_i_idx] = 1-xi[:, bit_i_idx], but assigns\n        # the result to xi_flip, instead of working in place on xi.\n        xi_flip = T.set_subtensor(xi[:, bit_i_idx], 1 - xi[:, bit_i_idx])\n\n        # calculate free energy with bit flipped\n        fe_xi_flip = self.free_energy(xi_flip)\n\n        # equivalent to e^(-FE(x_i)) / (e^(-FE(x_i)) + e^(-FE(x_{\\i})))\n        cost = T.mean(self.n_visible * T.log(T.nnet.sigmoid(fe_xi_flip -\n                                                            fe_xi)))\n\n        # increment bit_i_idx % number as part of updates\n        updates[bit_i_idx] = (bit_i_idx + 1) % self.n_visible\n\n        return cost\n\n    def get_reconstruction_cost(self, updates, pre_sigmoid_nv):\n        \"\"\"Approximation to the reconstruction error\n\n        Note that this function requires the pre-sigmoid activation as\n        input.  To understand why this is so you need to understand a\n        bit about how Theano works. Whenever you compile a Theano\n        function, the computational graph that you pass as input gets\n        optimized for speed and stability.  This is done by changing\n        several parts of the subgraphs with others.  One such\n        optimization expresses terms of the form log(sigmoid(x)) in\n        terms of softplus.  We need this optimization for the\n        cross-entropy since sigmoid of numbers larger than 30. (or\n        even less then that) turn to 1. and numbers smaller than\n        -30. turn to 0 which in terms will force theano to compute\n        log(0) and therefore we will get either -inf or NaN as\n        cost. If the value is expressed in terms of softplus we do not\n        get this undesirable behaviour. This optimization usually\n        works fine, but here we have a special case. The sigmoid is\n        applied inside the scan op, while the log is\n        outside. Therefore Theano will only see log(scan(..)) instead\n        of log(sigmoid(..)) and will not apply the wanted\n        optimization. We can not go and replace the sigmoid in scan\n        with something else also, because this only needs to be done\n        on the last step. Therefore the easiest and more efficient way\n        is to get also the pre-sigmoid activation as an output of\n        scan, and apply both the log and sigmoid outside scan such\n        that Theano can catch and optimize the expression.\n\n        \"\"\"\n\n        cross_entropy = T.mean(\n            T.sum(\n                self.input * T.log(T.nnet.sigmoid(pre_sigmoid_nv)) +\n                (1 - self.input) * T.log(1 - T.nnet.sigmoid(pre_sigmoid_nv)),\n                axis=1\n            )\n        )\n\n        return cross_entropy\n\n\ndef test_rbm(learning_rate=0.1, training_epochs=15,\n             dataset='mnist.pkl.gz', batch_size=20,\n             n_chains=20, n_samples=10, output_folder='rbm_plots',\n             n_hidden=500):\n    \"\"\"\n    Demonstrate how to train and afterwards sample from it using Theano.\n\n    This is demonstrated on MNIST.\n\n    :param learning_rate: learning rate used for training the RBM\n\n    :param training_epochs: number of epochs used for training\n\n    :param dataset: path the the pickled dataset\n\n    :param batch_size: size of a batch used to train the RBM\n\n    :param n_chains: number of parallel Gibbs chains to be used for sampling\n\n    :param n_samples: number of samples to plot for each chain\n\n    \"\"\"\n    datasets = load_data(dataset)\n\n    train_set_x, train_set_y = datasets[0]\n    test_set_x, test_set_y = datasets[2]\n\n    # compute number of minibatches for training, validation and testing\n    n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()    # index to a [mini]batch\n    x = T.matrix('x')  # the data is presented as rasterized images\n\n    rng = numpy.random.RandomState(123)\n    theano_rng = RandomStreams(rng.randint(2 ** 30))\n\n    # initialize storage for the persistent chain (state = hidden\n    # layer of chain)\n    persistent_chain = theano.shared(numpy.zeros((batch_size, n_hidden),\n                                                 dtype=theano.config.floatX),\n                                     borrow=True)\n\n    # construct the RBM class\n    rbm = RBM(input=x, n_visible=28 * 28,\n              n_hidden=n_hidden, numpy_rng=rng, theano_rng=theano_rng)\n\n    # get the cost and the gradient corresponding to one step of CD-15\n    cost, updates = rbm.get_cost_updates(lr=learning_rate,\n                                         persistent=persistent_chain, k=15)\n\n    #################################\n    #     Training the RBM          #\n    #################################\n    if not os.path.isdir(output_folder):\n        os.makedirs(output_folder)\n    os.chdir(output_folder)\n\n    # start-snippet-5\n    # it is ok for a theano function to have no output\n    # the purpose of train_rbm is solely to update the RBM parameters\n    train_rbm = theano.function(\n        [index],\n        cost,\n        updates=updates,\n        givens={\n            x: train_set_x[index * batch_size: (index + 1) * batch_size]\n        },\n        name='train_rbm'\n    )\n\n    plotting_time = 0.\n    start_time = time.clock()\n\n    # go through training epochs\n    for epoch in xrange(training_epochs):\n\n        # go through the training set\n        mean_cost = []\n        for batch_index in xrange(n_train_batches):\n            mean_cost += [train_rbm(batch_index)]\n\n        print 'Training epoch %d, cost is ' % epoch, numpy.mean(mean_cost)\n\n        # Plot filters after each training epoch\n        plotting_start = time.clock()\n        # Construct image from the weight matrix\n        image = Image.fromarray(\n            tile_raster_images(\n                X=rbm.W.get_value(borrow=True).T,\n                img_shape=(28, 28),\n                tile_shape=(10, 10),\n                tile_spacing=(1, 1)\n            )\n        )\n        image.save('filters_at_epoch_%i.png' % epoch)\n        plotting_stop = time.clock()\n        plotting_time += (plotting_stop - plotting_start)\n\n    end_time = time.clock()\n\n    pretraining_time = (end_time - start_time) - plotting_time\n\n    print ('Training took %f minutes' % (pretraining_time / 60.))\n    # end-snippet-5 start-snippet-6\n    #################################\n    #     Sampling from the RBM     #\n    #################################\n    # find out the number of test samples\n    number_of_test_samples = test_set_x.get_value(borrow=True).shape[0]\n\n    # pick random test examples, with which to initialize the persistent chain\n    test_idx = rng.randint(number_of_test_samples - n_chains)\n    persistent_vis_chain = theano.shared(\n        numpy.asarray(\n            test_set_x.get_value(borrow=True)[test_idx:test_idx + n_chains],\n            dtype=theano.config.floatX\n        )\n    )\n    # end-snippet-6 start-snippet-7\n    plot_every = 1000\n    # define one step of Gibbs sampling (mf = mean-field) define a\n    # function that does `plot_every` steps before returning the\n    # sample for plotting\n    (\n        [\n            presig_hids,\n            hid_mfs,\n            hid_samples,\n            presig_vis,\n            vis_mfs,\n            vis_samples\n        ],\n        updates\n    ) = theano.scan(\n        rbm.gibbs_vhv,\n        outputs_info=[None, None, None, None, None, persistent_vis_chain],\n        n_steps=plot_every\n    )\n\n    # add to updates the shared variable that takes care of our persistent\n    # chain :.\n    updates.update({persistent_vis_chain: vis_samples[-1]})\n    # construct the function that implements our persistent chain.\n    # we generate the \"mean field\" activations for plotting and the actual\n    # samples for reinitializing the state of our persistent chain\n    sample_fn = theano.function(\n        [],\n        [\n            vis_mfs[-1],\n            vis_samples[-1]\n        ],\n        updates=updates,\n        name='sample_fn'\n    )\n\n    # create a space to store the image for plotting ( we need to leave\n    # room for the tile_spacing as well)\n    image_data = numpy.zeros(\n        (29 * n_samples + 1, 29 * n_chains - 1),\n        dtype='uint8'\n    )\n    for idx in xrange(n_samples):\n        # generate `plot_every` intermediate samples that we discard,\n        # because successive samples in the chain are too correlated\n        vis_mf, vis_sample = sample_fn()\n        print ' ... plotting sample ', idx\n        image_data[29 * idx:29 * idx + 28, :] = tile_raster_images(\n            X=vis_mf,\n            img_shape=(28, 28),\n            tile_shape=(1, n_chains),\n            tile_spacing=(1, 1)\n        )\n\n    # construct image\n    image = Image.fromarray(image_data)\n    image.save('samples.png')\n    # end-snippet-7\n    os.chdir('../')\n\nif __name__ == '__main__':\n    test_rbm()\n"
  },
  {
    "path": "DeepLearningTutorials/code/rnnrbm.py",
    "content": "# Author: Nicolas Boulanger-Lewandowski\n# University of Montreal (2012)\n# RNN-RBM deep learning tutorial\n# More information at http://deeplearning.net/tutorial/rnnrbm.html\n\nimport glob\nimport os\nimport sys\n\nimport numpy\ntry:\n    import pylab\nexcept ImportError:\n    print (\n        \"pylab isn't available. If you use its functionality, it will crash.\"\n    )\n    print \"It can be installed with 'pip install -q Pillow'\"\n\nfrom midi.utils import midiread, midiwrite\nimport theano\nimport theano.tensor as T\nfrom theano.tensor.shared_randomstreams import RandomStreams\n\n#Don't use a python long as this don't work on 32 bits computers.\nnumpy.random.seed(0xbeef)\nrng = RandomStreams(seed=numpy.random.randint(1 << 30))\ntheano.config.warn.subtensor_merge_bug = False\n\n\ndef build_rbm(v, W, bv, bh, k):\n    '''Construct a k-step Gibbs chain starting at v for an RBM.\n\n    v : Theano vector or matrix\n        If a matrix, multiple chains will be run in parallel (batch).\n    W : Theano matrix\n        Weight matrix of the RBM.\n    bv : Theano vector\n        Visible bias vector of the RBM.\n    bh : Theano vector\n        Hidden bias vector of the RBM.\n    k : scalar or Theano scalar\n        Length of the Gibbs chain.\n\n    Return a (v_sample, cost, monitor, updates) tuple:\n\n    v_sample : Theano vector or matrix with the same shape as `v`\n        Corresponds to the generated sample(s).\n    cost : Theano scalar\n        Expression whose gradient with respect to W, bv, bh is the CD-k\n        approximation to the log-likelihood of `v` (training example) under the\n        RBM. The cost is averaged in the batch case.\n    monitor: Theano scalar\n        Pseudo log-likelihood (also averaged in the batch case).\n    updates: dictionary of Theano variable -> Theano variable\n        The `updates` object returned by scan.'''\n\n    def gibbs_step(v):\n        mean_h = T.nnet.sigmoid(T.dot(v, W) + bh)\n        h = rng.binomial(size=mean_h.shape, n=1, p=mean_h,\n                         dtype=theano.config.floatX)\n        mean_v = T.nnet.sigmoid(T.dot(h, W.T) + bv)\n        v = rng.binomial(size=mean_v.shape, n=1, p=mean_v,\n                         dtype=theano.config.floatX)\n        return mean_v, v\n\n    chain, updates = theano.scan(lambda v: gibbs_step(v)[1], outputs_info=[v],\n                                 n_steps=k)\n    v_sample = chain[-1]\n\n    mean_v = gibbs_step(v_sample)[0]\n    monitor = T.xlogx.xlogy0(v, mean_v) + T.xlogx.xlogy0(1 - v, 1 - mean_v)\n    monitor = monitor.sum() / v.shape[0]\n\n    def free_energy(v):\n        return -(v * bv).sum() - T.log(1 + T.exp(T.dot(v, W) + bh)).sum()\n    cost = (free_energy(v) - free_energy(v_sample)) / v.shape[0]\n\n    return v_sample, cost, monitor, updates\n\n\ndef shared_normal(num_rows, num_cols, scale=1):\n    '''Initialize a matrix shared variable with normally distributed\n    elements.'''\n    return theano.shared(numpy.random.normal(\n        scale=scale, size=(num_rows, num_cols)).astype(theano.config.floatX))\n\n\ndef shared_zeros(*shape):\n    '''Initialize a vector shared variable with zero elements.'''\n    return theano.shared(numpy.zeros(shape, dtype=theano.config.floatX))\n\n\ndef build_rnnrbm(n_visible, n_hidden, n_hidden_recurrent):\n    '''Construct a symbolic RNN-RBM and initialize parameters.\n\n    n_visible : integer\n        Number of visible units.\n    n_hidden : integer\n        Number of hidden units of the conditional RBMs.\n    n_hidden_recurrent : integer\n        Number of hidden units of the RNN.\n\n    Return a (v, v_sample, cost, monitor, params, updates_train, v_t,\n    updates_generate) tuple:\n\n    v : Theano matrix\n        Symbolic variable holding an input sequence (used during training)\n    v_sample : Theano matrix\n        Symbolic variable holding the negative particles for CD log-likelihood\n        gradient estimation (used during training)\n    cost : Theano scalar\n        Expression whose gradient (considering v_sample constant) corresponds\n        to the LL gradient of the RNN-RBM (used during training)\n    monitor : Theano scalar\n        Frame-level pseudo-likelihood (useful for monitoring during training)\n    params : tuple of Theano shared variables\n        The parameters of the model to be optimized during training.\n    updates_train : dictionary of Theano variable -> Theano variable\n        Update object that should be passed to theano.function when compiling\n        the training function.\n    v_t : Theano matrix\n        Symbolic variable holding a generated sequence (used during sampling)\n    updates_generate : dictionary of Theano variable -> Theano variable\n        Update object that should be passed to theano.function when compiling\n        the generation function.'''\n\n    W = shared_normal(n_visible, n_hidden, 0.01)\n    bv = shared_zeros(n_visible)\n    bh = shared_zeros(n_hidden)\n    Wuh = shared_normal(n_hidden_recurrent, n_hidden, 0.0001)\n    Wuv = shared_normal(n_hidden_recurrent, n_visible, 0.0001)\n    Wvu = shared_normal(n_visible, n_hidden_recurrent, 0.0001)\n    Wuu = shared_normal(n_hidden_recurrent, n_hidden_recurrent, 0.0001)\n    bu = shared_zeros(n_hidden_recurrent)\n\n    params = W, bv, bh, Wuh, Wuv, Wvu, Wuu, bu  # learned parameters as shared\n                                                # variables\n\n    v = T.matrix()  # a training sequence\n    u0 = T.zeros((n_hidden_recurrent,))  # initial value for the RNN hidden\n                                         # units\n\n    # If `v_t` is given, deterministic recurrence to compute the variable\n    # biases bv_t, bh_t at each time step. If `v_t` is None, same recurrence\n    # but with a separate Gibbs chain at each time step to sample (generate)\n    # from the RNN-RBM. The resulting sample v_t is returned in order to be\n    # passed down to the sequence history.\n    def recurrence(v_t, u_tm1):\n        bv_t = bv + T.dot(u_tm1, Wuv)\n        bh_t = bh + T.dot(u_tm1, Wuh)\n        generate = v_t is None\n        if generate:\n            v_t, _, _, updates = build_rbm(T.zeros((n_visible,)), W, bv_t,\n                                           bh_t, k=25)\n        u_t = T.tanh(bu + T.dot(v_t, Wvu) + T.dot(u_tm1, Wuu))\n        return ([v_t, u_t], updates) if generate else [u_t, bv_t, bh_t]\n\n    # For training, the deterministic recurrence is used to compute all the\n    # {bv_t, bh_t, 1 <= t <= T} given v. Conditional RBMs can then be trained\n    # in batches using those parameters.\n    (u_t, bv_t, bh_t), updates_train = theano.scan(\n        lambda v_t, u_tm1, *_: recurrence(v_t, u_tm1),\n        sequences=v, outputs_info=[u0, None, None], non_sequences=params)\n    v_sample, cost, monitor, updates_rbm = build_rbm(v, W, bv_t[:], bh_t[:],\n                                                     k=15)\n    updates_train.update(updates_rbm)\n\n    # symbolic loop for sequence generation\n    (v_t, u_t), updates_generate = theano.scan(\n        lambda u_tm1, *_: recurrence(None, u_tm1),\n        outputs_info=[None, u0], non_sequences=params, n_steps=200)\n\n    return (v, v_sample, cost, monitor, params, updates_train, v_t,\n            updates_generate)\n\n\nclass RnnRbm:\n    '''Simple class to train an RNN-RBM from MIDI files and to generate sample\n    sequences.'''\n\n    def __init__(\n        self,\n        n_hidden=150,\n        n_hidden_recurrent=100,\n        lr=0.001,\n        r=(21, 109),\n        dt=0.3\n    ):\n        '''Constructs and compiles Theano functions for training and sequence\n        generation.\n\n        n_hidden : integer\n            Number of hidden units of the conditional RBMs.\n        n_hidden_recurrent : integer\n            Number of hidden units of the RNN.\n        lr : float\n            Learning rate\n        r : (integer, integer) tuple\n            Specifies the pitch range of the piano-roll in MIDI note numbers,\n            including r[0] but not r[1], such that r[1]-r[0] is the number of\n            visible units of the RBM at a given time step. The default (21,\n            109) corresponds to the full range of piano (88 notes).\n        dt : float\n            Sampling period when converting the MIDI files into piano-rolls, or\n            equivalently the time difference between consecutive time steps.'''\n\n        self.r = r\n        self.dt = dt\n        (v, v_sample, cost, monitor, params, updates_train, v_t,\n            updates_generate) = build_rnnrbm(\n                r[1] - r[0],\n                n_hidden,\n                n_hidden_recurrent\n            )\n\n        gradient = T.grad(cost, params, consider_constant=[v_sample])\n        updates_train.update(\n            ((p, p - lr * g) for p, g in zip(params, gradient))\n        )\n        self.train_function = theano.function(\n            [v],\n            monitor,\n            updates=updates_train\n        )\n        self.generate_function = theano.function(\n            [],\n            v_t,\n            updates=updates_generate\n        )\n\n    def train(self, files, batch_size=100, num_epochs=200):\n        '''Train the RNN-RBM via stochastic gradient descent (SGD) using MIDI\n        files converted to piano-rolls.\n\n        files : list of strings\n            List of MIDI files that will be loaded as piano-rolls for training.\n        batch_size : integer\n            Training sequences will be split into subsequences of at most this\n            size before applying the SGD updates.\n        num_epochs : integer\n            Number of epochs (pass over the training set) performed. The user\n            can safely interrupt training with Ctrl+C at any time.'''\n\n        assert len(files) > 0, 'Training set is empty!' \\\n                               ' (did you download the data files?)'\n        dataset = [midiread(f, self.r,\n                            self.dt).piano_roll.astype(theano.config.floatX)\n                   for f in files]\n\n        try:\n            for epoch in xrange(num_epochs):\n                numpy.random.shuffle(dataset)\n                costs = []\n\n                for s, sequence in enumerate(dataset):\n                    for i in xrange(0, len(sequence), batch_size):\n                        cost = self.train_function(sequence[i:i + batch_size])\n                        costs.append(cost)\n\n                print 'Epoch %i/%i' % (epoch + 1, num_epochs),\n                print numpy.mean(costs)\n                sys.stdout.flush()\n\n        except KeyboardInterrupt:\n            print 'Interrupted by user.'\n\n    def generate(self, filename, show=True):\n        '''Generate a sample sequence, plot the resulting piano-roll and save\n        it as a MIDI file.\n\n        filename : string\n            A MIDI file will be created at this location.\n        show : boolean\n            If True, a piano-roll of the generated sequence will be shown.'''\n\n        piano_roll = self.generate_function()\n        midiwrite(filename, piano_roll, self.r, self.dt)\n        if show:\n            extent = (0, self.dt * len(piano_roll)) + self.r\n            pylab.figure()\n            pylab.imshow(piano_roll.T, origin='lower', aspect='auto',\n                         interpolation='nearest', cmap=pylab.cm.gray_r,\n                         extent=extent)\n            pylab.xlabel('time (s)')\n            pylab.ylabel('MIDI note number')\n            pylab.title('generated piano-roll')\n\n\ndef test_rnnrbm(batch_size=100, num_epochs=200):\n    model = RnnRbm()\n    re = os.path.join(os.path.split(os.path.dirname(__file__))[0],\n                      'data', 'Nottingham', 'train', '*.mid')\n    model.train(glob.glob(re),\n                batch_size=batch_size, num_epochs=num_epochs)\n    return model\n\nif __name__ == '__main__':\n    model = test_rnnrbm()\n    model.generate('sample1.mid')\n    model.generate('sample2.mid')\n    pylab.show()\n"
  },
  {
    "path": "DeepLearningTutorials/code/rnnslu.py",
    "content": "from collections import OrderedDict\nimport copy\nimport cPickle\nimport gzip\nimport os\nimport urllib\nimport random\nimport stat\nimport subprocess\nimport sys\nimport time\n\nimport numpy\n\nimport theano\nfrom theano import tensor as T\n\n# Otherwise the deepcopy fails\nimport sys\nsys.setrecursionlimit(1500)\n\nPREFIX = os.getenv(\n    'ATISDATA',\n    os.path.join(os.path.split(os.path.abspath(os.path.dirname(__file__)))[0],\n                 'data'))\n\n\n# utils functions\ndef shuffle(lol, seed):\n    '''\n    lol :: list of list as input\n    seed :: seed the shuffling\n\n    shuffle inplace each list in the same order\n    '''\n    for l in lol:\n        random.seed(seed)\n        random.shuffle(l)\n\n\n# start-snippet-1\ndef contextwin(l, win):\n    '''\n    win :: int corresponding to the size of the window\n    given a list of indexes composing a sentence\n\n    l :: array containing the word indexes\n\n    it will return a list of list of indexes corresponding\n    to context windows surrounding each word in the sentence\n    '''\n    assert (win % 2) == 1\n    assert win >= 1\n    l = list(l)\n\n    lpadded = win // 2 * [-1] + l + win // 2 * [-1]\n    out = [lpadded[i:(i + win)] for i in range(len(l))]\n\n    assert len(out) == len(l)\n    return out\n# end-snippet-1\n\n\n# data loading functions\ndef atisfold(fold):\n    assert fold in range(5)\n    filename = os.path.join(PREFIX, 'atis.fold'+str(fold)+'.pkl.gz')\n    f = gzip.open(filename, 'rb')\n    train_set, valid_set, test_set, dicts = cPickle.load(f)\n    return train_set, valid_set, test_set, dicts\n\n\n# metrics function using conlleval.pl\ndef conlleval(p, g, w, filename, script_path):\n    '''\n    INPUT:\n    p :: predictions\n    g :: groundtruth\n    w :: corresponding words\n\n    OUTPUT:\n    filename :: name of the file where the predictions\n    are written. it will be the input of conlleval.pl script\n    for computing the performance in terms of precision\n    recall and f1 score\n\n    OTHER:\n    script_path :: path to the directory containing the\n    conlleval.pl script\n    '''\n    out = ''\n    for sl, sp, sw in zip(g, p, w):\n        out += 'BOS O O\\n'\n        for wl, wp, w in zip(sl, sp, sw):\n            out += w + ' ' + wl + ' ' + wp + '\\n'\n        out += 'EOS O O\\n\\n'\n\n    f = open(filename, 'w')\n    f.writelines(out)\n    f.close()\n\n    return get_perf(filename, script_path)\n\n\ndef download(origin, destination):\n    '''\n    download the corresponding atis file\n    from http://www-etud.iro.umontreal.ca/~mesnilgr/atis/\n    '''\n    print 'Downloading data from %s' % origin\n    urllib.urlretrieve(origin, destination)\n\n\ndef get_perf(filename, folder):\n    ''' run conlleval.pl perl script to obtain\n    precision/recall and F1 score '''\n    _conlleval = os.path.join(folder, 'conlleval.pl')\n    if not os.path.isfile(_conlleval):\n        url = 'http://www-etud.iro.umontreal.ca/~mesnilgr/atis/conlleval.pl'\n        download(url, _conlleval)\n        os.chmod(_conlleval, stat.S_IRWXU)  # give the execute permissions\n\n    proc = subprocess.Popen([\"perl\",\n                            _conlleval],\n                            stdin=subprocess.PIPE,\n                            stdout=subprocess.PIPE)\n\n    stdout, _ = proc.communicate(''.join(open(filename).readlines()))\n    for line in stdout.split('\\n'):\n        if 'accuracy' in line:\n            out = line.split()\n            break\n\n    precision = float(out[6][:-2])\n    recall = float(out[8][:-2])\n    f1score = float(out[10])\n\n    return {'p': precision, 'r': recall, 'f1': f1score}\n\n\n# start-snippet-2\nclass RNNSLU(object):\n    ''' elman neural net model '''\n    def __init__(self, nh, nc, ne, de, cs):\n        '''\n        nh :: dimension of the hidden layer\n        nc :: number of classes\n        ne :: number of word embeddings in the vocabulary\n        de :: dimension of the word embeddings\n        cs :: word window context size\n        '''\n        # parameters of the model\n        self.emb = theano.shared(name='embeddings',\n                                 value=0.2 * numpy.random.uniform(-1.0, 1.0,\n                                 (ne+1, de))\n                                 # add one for padding at the end\n                                 .astype(theano.config.floatX))\n        self.wx = theano.shared(name='wx',\n                                value=0.2 * numpy.random.uniform(-1.0, 1.0,\n                                (de * cs, nh))\n                                .astype(theano.config.floatX))\n        self.wh = theano.shared(name='wh',\n                                value=0.2 * numpy.random.uniform(-1.0, 1.0,\n                                (nh, nh))\n                                .astype(theano.config.floatX))\n        self.w = theano.shared(name='w',\n                               value=0.2 * numpy.random.uniform(-1.0, 1.0,\n                               (nh, nc))\n                               .astype(theano.config.floatX))\n        self.bh = theano.shared(name='bh',\n                                value=numpy.zeros(nh,\n                                dtype=theano.config.floatX))\n        self.b = theano.shared(name='b',\n                               value=numpy.zeros(nc,\n                               dtype=theano.config.floatX))\n        self.h0 = theano.shared(name='h0',\n                                value=numpy.zeros(nh,\n                                dtype=theano.config.floatX))\n\n        # bundle\n        self.params = [self.emb, self.wx, self.wh, self.w,\n                       self.bh, self.b, self.h0]\n        # end-snippet-2\n        # as many columns as context window size\n        # as many lines as words in the sentence\n        # start-snippet-3\n        idxs = T.imatrix()\n        x = self.emb[idxs].reshape((idxs.shape[0], de*cs))\n        y_sentence = T.ivector('y_sentence')  # labels\n        # end-snippet-3 start-snippet-4\n\n        def recurrence(x_t, h_tm1):\n            h_t = T.nnet.sigmoid(T.dot(x_t, self.wx)\n                                 + T.dot(h_tm1, self.wh) + self.bh)\n            s_t = T.nnet.softmax(T.dot(h_t, self.w) + self.b)\n            return [h_t, s_t]\n\n        [h, s], _ = theano.scan(fn=recurrence,\n                                sequences=x,\n                                outputs_info=[self.h0, None],\n                                n_steps=x.shape[0])\n\n        p_y_given_x_sentence = s[:, 0, :]\n        y_pred = T.argmax(p_y_given_x_sentence, axis=1)\n        # end-snippet-4\n\n        # cost and gradients and learning rate\n        # start-snippet-5\n        lr = T.scalar('lr')\n\n        sentence_nll = -T.mean(T.log(p_y_given_x_sentence)\n                               [T.arange(x.shape[0]), y_sentence])\n        sentence_gradients = T.grad(sentence_nll, self.params)\n        sentence_updates = OrderedDict((p, p - lr*g)\n                                       for p, g in\n                                       zip(self.params, sentence_gradients))\n        # end-snippet-5\n\n        # theano functions to compile\n        # start-snippet-6\n        self.classify = theano.function(inputs=[idxs], outputs=y_pred)\n        self.sentence_train = theano.function(inputs=[idxs, y_sentence, lr],\n                                              outputs=sentence_nll,\n                                              updates=sentence_updates)\n        # end-snippet-6 start-snippet-7\n        self.normalize = theano.function(inputs=[],\n                                         updates={self.emb:\n                                                  self.emb /\n                                                  T.sqrt((self.emb**2)\n                                                  .sum(axis=1))\n                                                  .dimshuffle(0, 'x')})\n        # end-snippet-7\n\n    def train(self, x, y, window_size, learning_rate):\n\n        cwords = contextwin(x, window_size)\n        words = map(lambda x: numpy.asarray(x).astype('int32'), cwords)\n        labels = y\n\n        self.sentence_train(words, labels, learning_rate)\n        self.normalize()\n\n    def save(self, folder):\n        for param in self.params:\n            numpy.save(os.path.join(folder,\n                       param.name + '.npy'), param.get_value())\n\n    def load(self, folder):\n        for param in self.params:\n            param.set_value(numpy.load(os.path.join(folder,\n                            param.name + '.npy')))\n\n\ndef main(param=None):\n    if not param:\n        param = {\n            'fold': 3,\n            # 5 folds 0,1,2,3,4\n            'data': 'atis',\n            'lr': 0.0970806646812754,\n            'verbose': 1,\n            'decay': True,\n            # decay on the learning rate if improvement stops\n            'win': 7,\n            # number of words in the context window\n            'nhidden': 200,\n            # number of hidden units\n            'seed': 345,\n            'emb_dimension': 50,\n            # dimension of word embedding\n            'nepochs': 60,\n            # 60 is recommended\n            'savemodel': False}\n    print param\n\n    folder_name = os.path.basename(__file__).split('.')[0]\n    folder = os.path.join(os.path.dirname(__file__), folder_name)\n    if not os.path.exists(folder):\n        os.mkdir(folder)\n\n    # load the dataset\n    train_set, valid_set, test_set, dic = atisfold(param['fold'])\n\n    idx2label = dict((k, v) for v, k in dic['labels2idx'].iteritems())\n    idx2word = dict((k, v) for v, k in dic['words2idx'].iteritems())\n\n    train_lex, train_ne, train_y = train_set\n    valid_lex, valid_ne, valid_y = valid_set\n    test_lex, test_ne, test_y = test_set\n\n    vocsize = len(set(reduce(lambda x, y: list(x) + list(y),\n                             train_lex + valid_lex + test_lex)))\n    nclasses = len(set(reduce(lambda x, y: list(x)+list(y),\n                              train_y + test_y + valid_y)))\n    nsentences = len(train_lex)\n\n    groundtruth_valid = [map(lambda x: idx2label[x], y) for y in valid_y]\n    words_valid = [map(lambda x: idx2word[x], w) for w in valid_lex]\n    groundtruth_test = [map(lambda x: idx2label[x], y) for y in test_y]\n    words_test = [map(lambda x: idx2word[x], w) for w in test_lex]\n\n    # instanciate the model\n    numpy.random.seed(param['seed'])\n    random.seed(param['seed'])\n\n    rnn = RNNSLU(nh=param['nhidden'],\n                 nc=nclasses,\n                 ne=vocsize,\n                 de=param['emb_dimension'],\n                 cs=param['win'])\n\n    # train with early stopping on validation set\n    best_f1 = -numpy.inf\n    param['clr'] = param['lr']\n    for e in xrange(param['nepochs']):\n\n        # shuffle\n        shuffle([train_lex, train_ne, train_y], param['seed'])\n\n        param['ce'] = e\n        tic = time.time()\n\n        for i, (x, y) in enumerate(zip(train_lex, train_y)):\n            rnn.train(x, y, param['win'], param['clr'])\n            print '[learning] epoch %i >> %2.2f%%' % (\n                e, (i + 1) * 100. / nsentences),\n            print 'completed in %.2f (sec) <<\\r' % (time.time() - tic),\n            sys.stdout.flush()\n\n        # evaluation // back into the real world : idx -> words\n        predictions_test = [map(lambda x: idx2label[x],\n                            rnn.classify(numpy.asarray(\n                            contextwin(x, param['win'])).astype('int32')))\n                            for x in test_lex]\n        predictions_valid = [map(lambda x: idx2label[x],\n                             rnn.classify(numpy.asarray(\n                             contextwin(x, param['win'])).astype('int32')))\n                             for x in valid_lex]\n\n        # evaluation // compute the accuracy using conlleval.pl\n        res_test = conlleval(predictions_test,\n                             groundtruth_test,\n                             words_test,\n                             folder + '/current.test.txt',\n                             folder)\n        res_valid = conlleval(predictions_valid,\n                              groundtruth_valid,\n                              words_valid,\n                              folder + '/current.valid.txt',\n                              folder)\n\n        if res_valid['f1'] > best_f1:\n\n            if param['savemodel']:\n                rnn.save(folder)\n\n            best_rnn = copy.deepcopy(rnn)\n            best_f1 = res_valid['f1']\n\n            if param['verbose']:\n                print('NEW BEST: epoch', e,\n                      'valid F1', res_valid['f1'],\n                      'best test F1', res_test['f1'])\n\n            param['vf1'], param['tf1'] = res_valid['f1'], res_test['f1']\n            param['vp'], param['tp'] = res_valid['p'], res_test['p']\n            param['vr'], param['tr'] = res_valid['r'], res_test['r']\n            param['be'] = e\n\n            subprocess.call(['mv', folder + '/current.test.txt',\n                            folder + '/best.test.txt'])\n            subprocess.call(['mv', folder + '/current.valid.txt',\n                            folder + '/best.valid.txt'])\n        else:\n            if param['verbose']:\n                print ''\n\n        # learning rate decay if no improvement in 10 epochs\n        if param['decay'] and abs(param['be']-param['ce']) >= 10:\n            param['clr'] *= 0.5\n            rnn = best_rnn\n\n        if param['clr'] < 1e-5:\n            break\n\n    print('BEST RESULT: epoch', param['be'],\n          'valid F1', param['vf1'],\n          'best test F1', param['tf1'],\n          'with the model', folder)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "DeepLearningTutorials/code/test.py",
    "content": "import sys\n\nimport numpy\n\nimport convolutional_mlp\nimport dA\nimport DBN\nimport logistic_cg\nimport logistic_sgd\nimport mlp\nimport rbm\nimport rnnrbm\nimport SdA\nimport rnnslu\nimport lstm\n\n\ndef test_rnnslu():\n    rnnslu.main()\n\n\ndef test_logistic_sgd():\n    logistic_sgd.sgd_optimization_mnist(n_epochs=10)\n\n\ndef test_logistic_cg():\n    try:\n        import scipy\n        logistic_cg.cg_optimization_mnist(n_epochs=10)\n    except ImportError:\n        from nose.plugins.skip import SkipTest\n        raise SkipTest(\n            'SciPy not available. Needed for the logistic_cg example.')\n\n\ndef test_mlp():\n    mlp.test_mlp(n_epochs=1)\n\n\ndef test_convolutional_mlp():\n    convolutional_mlp.evaluate_lenet5(n_epochs=1, nkerns=[5, 5])\n\n\ndef test_dA():\n    dA.test_dA(training_epochs=1, output_folder='tmp_dA_plots')\n\n\ndef test_SdA():\n    SdA.test_SdA(pretraining_epochs=1, training_epochs=1, batch_size=300)\n\n\ndef test_dbn():\n    DBN.test_DBN(pretraining_epochs=1, training_epochs=1, batch_size=300)\n\n\ndef test_rbm():\n    rbm.test_rbm(training_epochs=1, batch_size=300, n_chains=1, n_samples=1,\n                 n_hidden=20, output_folder='tmp_rbm_plots')\n\n\ndef test_rnnrbm():\n    rnnrbm.test_rnnrbm(num_epochs=1)\n\n\ndef test_lstm():\n    lstm.train_lstm(max_epochs=1, test_size=1000, saveto='')\n\n\ndef speed():\n    \"\"\"\n    This fonction modify the configuration theano and don't restore it!\n    \"\"\"\n\n    algo = ['logistic_sgd', 'logistic_cg', 'mlp', 'convolutional_mlp',\n            'dA', 'SdA', 'DBN', 'rbm', 'rnnrbm', 'rnnslu', 'lstm']\n    to_exec = [True] * len(algo)\n#    to_exec = [False] * len(algo)\n#    to_exec[-1] = True\n    do_float64 = True\n    do_float32 = True\n    do_gpu = True\n\n    algo_executed = [s for idx, s in enumerate(algo) if to_exec[idx]]\n    #Timming expected are from the buildbot that have an i7-920 @\n    # 2.67GHz with hyperthread enabled for the cpu, 12G of ram. An GeForce GTX\n    # 580 for the GPU. OS=Fedora 14, gcc=4.5.1, python/BLAS from EPD\n    # 7.1-2 (python 2.7.2, mkl unknow). BLAS with only 1 thread.\n\n    expected_times_64 = numpy.asarray([9.8, 22.5, 76.1, 73.7, 116.4,\n                                       346.9, 381.9, 558.1, 186.3, 50.8, 113.6])\n    expected_times_32 = numpy.asarray([8.1, 17.9, 42.5, 66.5, 71,\n                                       191.2, 226.8, 432.8, 176.2, 36.9, 78.0])\n\n    # Number with just 1 decimal are new value that are faster with\n    # the Theano version 0.5rc2 Other number are older. They are not\n    # updated, as we where faster in the past!\n    # TODO: find why and fix this!\n\n# Here is the value for the buildbot on February 3th 2012 with a GTX 285\n#              sgd,         cg           mlp          conv        da\n#              sda          dbn          rbm\n#    gpu times[3.72957802,  9.94316864,  29.1772666,  9.13857198, 25.91144657,\n#              18.30802011, 53.38651466, 285.41386175]\n#    expected [3.076634879, 7.555234910, 18.99226785, 9.58915591, 24.130070450,\n#              24.77524018, 92.66246653, 322.340329170]\n#              sgd,         cg           mlp          conv        da\n#              sda          dbn          rbm\n#expected/get [0.82492841,  0.75984178,  0.65092691,  1.04930573, 0.93125138\n#              1.35324519 1.7356905   1.12937868]\n\n    expected_times_gpu = numpy.asarray([3.0, 7.55523491, 18.99226785,\n                                        5.8, 20.5,\n                                        11.8, 47.9, 290.1, 255.4, 72.4, 17.0])\n    expected_times_64 = [s for idx, s in enumerate(expected_times_64)\n                         if to_exec[idx]]\n    expected_times_32 = [s for idx, s in enumerate(expected_times_32)\n                         if to_exec[idx]]\n    expected_times_gpu = [s for idx, s in enumerate(expected_times_gpu)\n                          if to_exec[idx]]\n\n    def time_test(m, l, idx, f, **kwargs):\n        if not to_exec[idx]:\n            return\n        print algo[idx]\n        ts = m.call_time\n        try:\n            f(**kwargs)\n        except Exception, e:\n            print >> sys.stderr, 'test', algo[idx], 'FAILED', e\n            l.append(numpy.nan)\n            return\n        te = m.call_time\n        l.append(te - ts)\n\n    def do_tests():\n        m = theano.compile.mode.get_default_mode()\n        l = []\n        time_test(m, l, 0, logistic_sgd.sgd_optimization_mnist, n_epochs=30)\n        time_test(m, l, 1, logistic_cg.cg_optimization_mnist, n_epochs=30)\n        time_test(m, l, 2, mlp.test_mlp, n_epochs=5)\n        time_test(m, l, 3, convolutional_mlp.evaluate_lenet5, n_epochs=5,\n                  nkerns=[5, 5])\n        time_test(m, l, 4, dA.test_dA, training_epochs=2,\n                  output_folder='tmp_dA_plots')\n        time_test(m, l, 5, SdA.test_SdA, pretraining_epochs=1,\n                  training_epochs=2, batch_size=300)\n        time_test(m, l, 6, DBN.test_DBN, pretraining_epochs=1,\n                  training_epochs=2, batch_size=300)\n        time_test(m, l, 7, rbm.test_rbm, training_epochs=1, batch_size=300,\n                  n_chains=1, n_samples=1, output_folder='tmp_rbm_plots')\n        time_test(m, l, 8, rnnrbm.test_rnnrbm, num_epochs=1)\n        s = {'fold': 3,\n             # 5 folds 0,1,2,3,4\n             'data': 'atis',\n             'lr': 0.0970806646812754,\n             'verbose': 1,\n             'decay': True,\n             # decay on the learning rate if improvement stops\n             'win': 7,\n             # number of words in the context window\n             'nhidden': 200,\n             # number of hidden units\n             'seed': 345,\n             'emb_dimension': 50,\n             # dimension of word embedding\n             'nepochs': 1,\n             # 60 is recommended\n             'savemodel': False}\n        time_test(m, l, 9, rnnslu.main, param=s)\n        time_test(m, l, 10, lstm.train_lstm, max_epochs=1, test_size=1000,\n                  saveto='')\n        return numpy.asarray(l)\n\n    #test in float64 in FAST_RUN mode on the cpu\n    import theano\n    if do_float64:\n        theano.config.floatX = 'float64'\n        theano.config.mode = 'FAST_RUN'\n        float64_times = do_tests()\n        print >> sys.stderr, algo_executed\n        print >> sys.stderr, 'float64 times', float64_times\n        print >> sys.stderr, 'float64 expected', expected_times_64\n        print >> sys.stderr, 'float64 % expected/get', (\n            expected_times_64 / float64_times)\n\n    #test in float32 in FAST_RUN mode on the cpu\n    theano.config.floatX = 'float32'\n    if do_float32:\n        float32_times = do_tests()\n        print >> sys.stderr, algo_executed\n        print >> sys.stderr, 'float32 times', float32_times\n        print >> sys.stderr, 'float32 expected', expected_times_32\n        print >> sys.stderr, 'float32 % expected/get', (\n            expected_times_32 / float32_times)\n\n        if do_float64:\n            print >> sys.stderr, 'float64/float32', (\n                float64_times / float32_times)\n            print >> sys.stderr\n            print >> sys.stderr, ('Duplicate the timing to have everything '\n                                  'in one place')\n            print >> sys.stderr, algo_executed\n            print >> sys.stderr, 'float64 times', float64_times\n            print >> sys.stderr, 'float64 expected', expected_times_64\n            print >> sys.stderr, 'float64 % expected/get', (\n                expected_times_64 / float64_times)\n            print >> sys.stderr, 'float32 times', float32_times\n            print >> sys.stderr, 'float32 expected', expected_times_32\n            print >> sys.stderr, 'float32 % expected/get', (\n                expected_times_32 / float32_times)\n\n            print >> sys.stderr, 'float64/float32', (\n                float64_times / float32_times)\n            print >> sys.stderr, 'expected float64/float32', (\n                expected_times_64 / float32_times)\n\n    #test in float32 in FAST_RUN mode on the gpu\n    import theano.sandbox.cuda\n    if do_gpu:\n        theano.sandbox.cuda.use('gpu')\n        gpu_times = do_tests()\n        print >> sys.stderr, algo_executed\n        print >> sys.stderr, 'gpu times', gpu_times\n        print >> sys.stderr, 'gpu expected', expected_times_gpu\n        print >> sys.stderr, 'gpu % expected/get', (\n            expected_times_gpu / gpu_times)\n\n        if do_float64:\n            print >> sys.stderr, 'float64/gpu', float64_times / gpu_times\n\n        if (do_float64 + do_float32 + do_gpu) > 1:\n            print >> sys.stderr\n            print >> sys.stderr, ('Duplicate the timing to have everything '\n                                  'in one place')\n            print >> sys.stderr, algo_executed\n            if do_float64:\n                print >> sys.stderr, 'float64 times', float64_times\n                print >> sys.stderr, 'float64 expected', expected_times_64\n                print >> sys.stderr, 'float64 % expected/get', (\n                    expected_times_64 / float64_times)\n            if do_float32:\n                print >> sys.stderr, 'float32 times', float32_times\n                print >> sys.stderr, 'float32 expected', expected_times_32\n                print >> sys.stderr, 'float32 % expected/get', (\n                    expected_times_32 / float32_times)\n            if do_gpu:\n                print >> sys.stderr, 'gpu times', gpu_times\n                print >> sys.stderr, 'gpu expected', expected_times_gpu\n                print >> sys.stderr, 'gpu % expected/get', (\n                    expected_times_gpu / gpu_times)\n\n            print\n            if do_float64 and do_float32:\n                print >> sys.stderr, 'float64/float32', (\n                    float64_times / float32_times)\n                print >> sys.stderr, 'expected float64/float32', (\n                    expected_times_64 / float32_times)\n            if do_float64 and do_gpu:\n                print >> sys.stderr, 'float64/gpu', float64_times / gpu_times\n                print >> sys.stderr, 'expected float64/gpu', (\n                    expected_times_64 / gpu_times)\n            if do_float32 and do_gpu:\n                print >> sys.stderr, 'float32/gpu', float32_times / gpu_times\n                print >> sys.stderr, 'expected float32/gpu', (\n                    expected_times_32 / gpu_times)\n\n    def compare(x, y):\n        ratio = x / y\n        # If there is more then 5% difference between the expected\n        # time and the real time, we consider this an error.\n        return sum((ratio < 0.95) + (ratio > 1.05))\n\n    print\n    if do_float64:\n        err = compare(expected_times_64, float64_times)\n        print >> sys.stderr, 'speed_failure_float64=' + str(err)\n    if do_float32:\n        err = compare(expected_times_32, float32_times)\n        print >> sys.stderr, 'speed_failure_float32=' + str(err)\n    if do_gpu:\n        err = compare(expected_times_gpu, gpu_times)\n        print >> sys.stderr, 'speed_failure_gpu=' + str(err)\n\n        assert not numpy.isnan(gpu_times).any()\n"
  },
  {
    "path": "DeepLearningTutorials/code/utils.py",
    "content": "\"\"\" This file contains different utility functions that are not connected\nin anyway to the networks presented in the tutorials, but rather help in\nprocessing the outputs into a more understandable way.\n\nFor example ``tile_raster_images`` helps in generating a easy to grasp\nimage from a set of samples or weights.\n\"\"\"\n\n\nimport numpy\n\n\ndef scale_to_unit_interval(ndar, eps=1e-8):\n    \"\"\" Scales all values in the ndarray ndar to be between 0 and 1 \"\"\"\n    ndar = ndar.copy()\n    ndar -= ndar.min()\n    ndar *= 1.0 / (ndar.max() + eps)\n    return ndar\n\n\ndef tile_raster_images(X, img_shape, tile_shape, tile_spacing=(0, 0),\n                       scale_rows_to_unit_interval=True,\n                       output_pixel_vals=True):\n    \"\"\"\n    Transform an array with one flattened image per row, into an array in\n    which images are reshaped and layed out like tiles on a floor.\n\n    This function is useful for visualizing datasets whose rows are images,\n    and also columns of matrices for transforming those rows\n    (such as the first layer of a neural net).\n\n    :type X: a 2-D ndarray or a tuple of 4 channels, elements of which can\n    be 2-D ndarrays or None;\n    :param X: a 2-D array in which every row is a flattened image.\n\n    :type img_shape: tuple; (height, width)\n    :param img_shape: the original shape of each image\n\n    :type tile_shape: tuple; (rows, cols)\n    :param tile_shape: the number of images to tile (rows, cols)\n\n    :param output_pixel_vals: if output should be pixel values (i.e. int8\n    values) or floats\n\n    :param scale_rows_to_unit_interval: if the values need to be scaled before\n    being plotted to [0,1] or not\n\n\n    :returns: array suitable for viewing as an image.\n    (See:`Image.fromarray`.)\n    :rtype: a 2-d array with same dtype as X.\n\n    \"\"\"\n\n    assert len(img_shape) == 2\n    assert len(tile_shape) == 2\n    assert len(tile_spacing) == 2\n\n    # The expression below can be re-written in a more C style as\n    # follows :\n    #\n    # out_shape    = [0,0]\n    # out_shape[0] = (img_shape[0]+tile_spacing[0])*tile_shape[0] -\n    #                tile_spacing[0]\n    # out_shape[1] = (img_shape[1]+tile_spacing[1])*tile_shape[1] -\n    #                tile_spacing[1]\n    out_shape = [\n        (ishp + tsp) * tshp - tsp\n        for ishp, tshp, tsp in zip(img_shape, tile_shape, tile_spacing)\n    ]\n\n    if isinstance(X, tuple):\n        assert len(X) == 4\n        # Create an output numpy ndarray to store the image\n        if output_pixel_vals:\n            out_array = numpy.zeros((out_shape[0], out_shape[1], 4),\n                                    dtype='uint8')\n        else:\n            out_array = numpy.zeros((out_shape[0], out_shape[1], 4),\n                                    dtype=X.dtype)\n\n        #colors default to 0, alpha defaults to 1 (opaque)\n        if output_pixel_vals:\n            channel_defaults = [0, 0, 0, 255]\n        else:\n            channel_defaults = [0., 0., 0., 1.]\n\n        for i in xrange(4):\n            if X[i] is None:\n                # if channel is None, fill it with zeros of the correct\n                # dtype\n                dt = out_array.dtype\n                if output_pixel_vals:\n                    dt = 'uint8'\n                out_array[:, :, i] = numpy.zeros(\n                    out_shape,\n                    dtype=dt\n                ) + channel_defaults[i]\n            else:\n                # use a recurrent call to compute the channel and store it\n                # in the output\n                out_array[:, :, i] = tile_raster_images(\n                    X[i], img_shape, tile_shape, tile_spacing,\n                    scale_rows_to_unit_interval, output_pixel_vals)\n        return out_array\n\n    else:\n        # if we are dealing with only one channel\n        H, W = img_shape\n        Hs, Ws = tile_spacing\n\n        # generate a matrix to store the output\n        dt = X.dtype\n        if output_pixel_vals:\n            dt = 'uint8'\n        out_array = numpy.zeros(out_shape, dtype=dt)\n\n        for tile_row in xrange(tile_shape[0]):\n            for tile_col in xrange(tile_shape[1]):\n                if tile_row * tile_shape[1] + tile_col < X.shape[0]:\n                    this_x = X[tile_row * tile_shape[1] + tile_col]\n                    if scale_rows_to_unit_interval:\n                        # if we should scale values to be between 0 and 1\n                        # do this by calling the `scale_to_unit_interval`\n                        # function\n                        this_img = scale_to_unit_interval(\n                            this_x.reshape(img_shape))\n                    else:\n                        this_img = this_x.reshape(img_shape)\n                    # add the slice to the corresponding position in the\n                    # output array\n                    c = 1\n                    if output_pixel_vals:\n                        c = 255\n                    out_array[\n                        tile_row * (H + Hs): tile_row * (H + Hs) + H,\n                        tile_col * (W + Ws): tile_col * (W + Ws) + W\n                    ] = this_img * c\n        return out_array\n"
  },
  {
    "path": "DeepLearningTutorials/data/download.sh",
    "content": "#!/bin/sh\n\nwhich wget >/dev/null 2>&1\nWGET=$?\nwhich curl >/dev/null 2>&1\nCURL=$?\nif [ \"$WGET\" -eq 0 ]; then\n    DL_CMD=\"wget -c\"\nelif [ \"$CURL\" -eq 0 ]; then\n    DL_CMD=\"curl -C - -O\"\nelse\n    echo \"You need wget or curl installed to download\"\n    exit 1\nfi\n\n$DL_CMD http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz\n$DL_CMD http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist_py3k.pkl.gz\n$DL_CMD http://www.iro.umontreal.ca/~lisa/deep/data/imdb.pkl.gz && gunzip imdb.pkl.gz\n$DL_CMD http://www.iro.umontreal.ca/~lisa/deep/data/Nottingham.zip && unzip -u Nottingham.zip\n$DL_CMD http://www.iro.umontreal.ca/~lisa/deep/midi.zip && unzip -u midi.zip -d ../code && echo \"extracted Modified Python MIDI package (GPL)\"\n$DL_CMD http://www-etud.iro.umontreal.ca/~mesnilgr/atis/atis.fold0.pkl.gz\n$DL_CMD http://www-etud.iro.umontreal.ca/~mesnilgr/atis/atis.fold1.pkl.gz\n$DL_CMD http://www-etud.iro.umontreal.ca/~mesnilgr/atis/atis.fold2.pkl.gz\n$DL_CMD http://www-etud.iro.umontreal.ca/~mesnilgr/atis/atis.fold3.pkl.gz\n$DL_CMD http://www-etud.iro.umontreal.ca/~mesnilgr/atis/atis.fold4.pkl.gz\n"
  },
  {
    "path": "DeepLearningTutorials/doc/.templates/layout.html",
    "content": "{% extends \"!layout.html\" %}\n\n{%- block extrahead %}\n{{ super() }}\n<script type=\"text/javascript\">\n  var _gaq = _gaq || [];\n  _gaq.push(['_setAccount', 'UA-168290-9']);\n  _gaq.push(['_trackPageview']);\n</script>\n{% endblock %}\n\n{% block footer %}\n{{ super() }}\n<script type=\"text/javascript\">\n  (function() {\n    var ga = document.createElement('script');\n    ga.src = ('https:' == document.location.protocol ?\n              'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n    ga.setAttribute('async', 'true');\n    document.documentElement.firstChild.appendChild(ga);\n  })();\n</script>\n{% endblock %}\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/DBN.txt",
    "content": ".. _DBN:\n\nDeep Belief Networks\n====================\n\n.. note::\n  This section assumes the reader has already read through :doc:`logreg`\n  and :doc:`mlp` and :doc:`rbm`. Additionally it uses the following Theano\n  functions and concepts : `T.tanh`_, `shared variables`_, `basic arithmetic\n  ops`_, `T.grad`_, `Random numbers`_, `floatX`_. If you intend to run the\n  code on GPU also read `GPU`_.\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html \n\n.. _Random numbers: http://deeplearning.net/software/theano/tutorial/examples.html#using-random-numbers\n\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/DBN.py\n\n\nDeep Belief Networks\n++++++++++++++++++++\n\n[Hinton06]_ showed that RBMs can be stacked and trained in a greedy manner\nto form so-called Deep Belief Networks (DBN). DBNs are graphical models which\nlearn to extract a deep hierarchical representation of the training data.\nThey model the joint distribution between observed vector :math:`x` and\nthe :math:`\\ell` hidden layers :math:`h^k` as follows:\n\n.. math::\n    :label: dbn\n \n    P(x, h^1, \\ldots, h^{\\ell}) = \\left(\\prod_{k=0}^{\\ell-2} P(h^k|h^{k+1})\\right) P(h^{\\ell-1},h^{\\ell})\n\nwhere :math:`x=h^0`, :math:`P(h^{k-1} | h^k)` is a conditional distribution\nfor the visible units conditioned on the hidden units of the RBM at level\n:math:`k`, and :math:`P(h^{\\ell-1}, h^{\\ell})` is the visible-hidden joint\ndistribution in the top-level RBM. This is illustrated in the figure below.\n\n\n.. figure:: images/DBN3.png\n    :align: center\n\nThe principle of greedy layer-wise unsupervised training can be applied to\nDBNs with RBMs as the building blocks for each layer [Hinton06]_, [Bengio07]_.\nThe process is as follows:\n\n1. Train the first layer as an RBM that models the raw input :math:`x =\nh^{(0)}` as its visible layer.\n\n2. Use that first layer to obtain a representation of the input that will\nbe used as data for the second layer. Two common solutions exist. This\nrepresentation can be chosen as being the mean activations\n:math:`p(h^{(1)}=1|h^{(0)})` or samples of :math:`p(h^{(1)}|h^{(0)})`.\n\n3. Train the second layer as an RBM, taking the transformed data (samples or\nmean activations) as training examples (for the visible layer of that RBM).\n\n4. Iterate (2 and 3) for the desired number of layers, each time propagating\nupward either samples or mean values.\n\n5. Fine-tune all the parameters of this deep architecture with respect to a\nproxy for the DBN log- likelihood, or with respect to a supervised training\ncriterion (after adding extra learning machinery to convert the learned\nrepresentation into supervised predictions, e.g. a linear classifier).\n\n\nIn this tutorial, we focus on fine-tuning via supervised gradient descent.\nSpecifically, we use a logistic regression classifier to classify the input\n:math:`x` based on the output of the last hidden layer :math:`h^{(l)}` of the\nDBN. Fine-tuning is then performed via supervised gradient descent of the\nnegative log-likelihood cost function. Since the supervised gradient is only\nnon-null for the weights and hidden layer biases of each layer (i.e. null for\nthe visible biases of each RBM), this procedure is equivalent to initializing\nthe parameters of a deep MLP with the weights and hidden layer biases obtained\nwith the unsupervised training strategy.\n\nJustifying Greedy-Layer Wise Pre-Training\n+++++++++++++++++++++++++++++++++++++++++\n\nWhy does such an algorithm work ? Taking as example a 2-layer DBN with hidden\nlayers :math:`h^{(1)}` and :math:`h^{(2)}` (with respective weight parameters\n:math:`W^{(1)}` and :math:`W^{(2)}`), [Hinton06]_ established \n(see also Bengio09]_ for a detailed derivation) that :math:`\\log\np(x)` can be rewritten as,\n\n.. math::\n    :label: dbn_bound\n\n    \\log p(x) = &KL(Q(h^{(1)}|x)||p(h^{(1)}|x)) + H_{Q(h^{(1)}|x)} + \\\\\n                &\\sum_h Q(h^{(1)}|x)(\\log p(h^{(1)}) + \\log p(x|h^{(1)})).\n\n:math:`KL(Q(h^{(1)}|x) || p(h^{(1)}|x))` represents the KL divergence between\nthe posterior :math:`Q(h^{(1)}|x)` of the first RBM if it were standalone, and the\nprobability :math:`p(h^{(1)}|x)` for the same layer but defined by the entire DBN\n(i.e. taking into account the prior :math:`p(h^{(1)},h^{(2)})` defined by the\ntop-level RBM). :math:`H_{Q(h^{(1)}|x)}` is the entropy of the distribution\n:math:`Q(h^{(1)}|x)`. \n\nIt can be shown that if we initialize both hidden layers such that\n:math:`W^{(2)}={W^{(1)}}^T`, :math:`Q(h^{(1)}|x)=p(h^{(1)}|x)` and the KL\ndivergence term is null. If we learn the first level RBM and then keep its\nparameters :math:`W^{(1)}` fixed, optimizing Eq. :eq:`dbn_bound` with respect\nto :math:`W^{(2)}` can thus only increase the likelihood :math:`p(x)`.  \n\nAlso, notice that if we isolate the terms which depend only on :math:`W^{(2)}`, we\nget: \n\n.. math:: \n    \\sum_h Q(h^{(1)}|x)p(h^{(1)})\n    \nOptimizing this with respect to :math:`W^{(2)}` amounts to training a second-stage\nRBM, using the output of :math:`Q(h^{(1)}|x)` as the training distribution,\nwhen :math:`x` is sampled from the training distribution for the first RBM.\n\nImplementation\n++++++++++++++\n\nTo implement DBNs in Theano, we will use the class defined in the :doc:`rbm`\ntutorial. One can also observe that the code for the DBN is very similar with the one\nfor SdA, because both involve the principle of unsupervised layer-wise\npre-training followed by supervised fine-tuning as a deep MLP. \nThe main difference is that we use the RBM class instead of the dA\nclass.\n\nWe start off by defining the DBN class which will store the layers of the \nMLP, along with their associated RBMs. Since we take the viewpoint of using\nthe RBMs to initialize an MLP, the code will reflect this by seperating as\nmuch as possible the RBMs used to initialize the network and the MLP used for\nclassification.\n\n.. literalinclude:: ../code/DBN.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\n``self.sigmoid_layers`` will store the feed-forward graphs which together form\nthe MLP, while ``self.rbm_layers`` will store the RBMs used to pretrain each\nlayer of the MLP.\n\nNext step, we construct ``n_layers`` sigmoid layers (we use the\n``HiddenLayer`` class introduced in :ref:`mlp`, with the only modification\nthat we replaced the non-linearity from ``tanh`` to the logistic function\n:math:`s(x) = \\frac{1}{1+e^{-x}}`) and ``n_layers`` RBMs, where ``n_layers``\nis the depth of our model.  We link the sigmoid layers such that they form an\nMLP, and construct each RBM such that they share the weight matrix and the\nhidden bias with its corresponding sigmoid layer.\n\n.. literalinclude:: ../code/DBN.py\n  :start-after: # MLP.\n  :end-before: # We now need to add a logistic layer on top of the MLP\n\nAll that is left is to stack one last logistic regression layer in order to\nform an MLP. We will use the ``LogisticRegression`` class introduced in\n:ref:`logreg`. \n\n.. literalinclude:: ../code/DBN.py\n  :start-after: # We now need to add a logistic layer on top of the MLP\n  :end-before: def pretraining_functions\n\nThe class also provides a method which generates training functions for each\nof the RBMs. They are returned as a list, where element :math:`i` is a\nfunction which implements one step of training for the ``RBM`` at layer\n:math:`i`.\n\n.. literalinclude:: ../code/DBN.py\n  :start-after: self.errors = self.logLayer.errors(self.y)\n  :end-before: learning_rate = T.scalar('lr')\n\nIn order to be able to change the learning rate during training, we associate a\nTheano variable to it that has a default value.\n\n.. literalinclude:: ../code/DBN.py\n  :start-after: index = T.lscalar('index')\n  :end-before: def build_finetune_functions\n\nNow any function ``pretrain_fns[i]`` takes as arguments ``index`` and\noptionally ``lr`` -- the learning rate. Note that the names of the parameters\nare the names given to the Theano variables (e.g. ``lr``) when they are\nconstructed and not the name of the python variables (e.g. ``learning_rate``). Keep\nthis in mind when working with Theano. Optionally, if you provide ``k`` (the\nnumber of Gibbs steps to perform in CD or PCD) this will also become an\nargument of your function.\n\nIn the same fashion, the DBN class includes a method for building the\nfunctions required for finetuning ( a ``train_model``, a ``validate_model``\nand a ``test_model`` function). \n\n.. literalinclude:: ../code/DBN.py\n  :pyobject: DBN.build_finetune_functions\n\nNote that the returned ``valid_score`` and ``test_score`` are not Theano\nfunctions, but rather Python functions. These loop over the entire \nvalidation set and the entire test set to produce a list of the losses\nobtained over these sets.\n\n\nPutting it all together\n+++++++++++++++++++++++\n\nThe few lines of code below constructs the deep belief network : \n\n.. literalinclude:: ../code/DBN.py\n  :start-after: # numpy random generator\n  :end-before: start-snippet-2\n\nThere are two stages in training this network: (1) a layer-wise pre-training and\n(2) a fine-tuning stage.\n\nFor the pre-training stage, we loop over all the layers of the network. For\neach layer, we use the compiled theano function which determines the\ninput to the ``i``-th level RBM and performs one step of CD-k within this RBM.\nThis function is applied to the training set for a fixed number of epochs\ngiven by ``pretraining_epochs``.\n\n.. literalinclude:: ../code/DBN.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nThe fine-tuning loop is very similar to the one in the :ref:`mlp` tutorial,\nthe only difference being that we now use the functions given by\n``build_finetune_functions``.\n\nRunning the Code\n++++++++++++++++\n\nThe user can run the code by calling:\n\n.. code-block:: bash\n  \n  python code/DBN.py\n\nWith the default parameters, the code runs for 100 pre-training epochs with\nmini-batches of size 10. This corresponds to performing 500,000 unsupervised\nparameter updates. We use an unsupervised learning rate of 0.01, with a\nsupervised learning rate of 0.1.  The DBN itself consists of three\nhidden layers with 1000 units per layer. With early-stopping, this configuration\nachieved a minimal validation error of 1.27 with corresponding test\nerror of 1.34 after 46 supervised epochs.\n\nOn an Intel(R) Xeon(R) CPU X5560 running at 2.80GHz, using a multi-threaded MKL\nlibrary (running on 4 cores), pretraining took 615 minutes with an average of\n2.05 mins/(layer * epoch). Fine-tuning took only 101 minutes or approximately\n2.20 mins/epoch.\n\nHyper-parameters were selected by optimizing on the validation error. We tested\nunsupervised learning rates in :math:`\\{10^{-1}, ..., 10^{-5}\\}` and supervised\nlearning rates in :math:`\\{10^{-1}, ..., 10^{-4}\\}`. We did not use any form of\nregularization besides early-stopping, nor did we optimize over the number of\npretraining updates.\n\n\nTips and Tricks\n+++++++++++++++\n\nOne way to improve the running time of your code (given that you have\nsufficient memory available), is to compute the representation of the entire\ndataset at layer ``i`` in a single pass, once the weights of the\n:math:`i-1`-th layers have been fixed. Namely, start by training your first\nlayer RBM. Once it is trained, you can compute the hidden units values for\nevery example in the dataset and store this as a new dataset which is used to\ntrain the 2nd layer RBM. Once you trained the RBM for layer 2, you compute, in\na similar fashion, the dataset for layer 3 and so on. This avoids calculating\nthe intermediate (hidden layer) representations, ``pretraining_epochs`` times\nat the expense of increased memory usage.\n"
  },
  {
    "path": "DeepLearningTutorials/doc/LICENSE.txt",
    "content": ".. _license:\n\nLICENSE\n=======\n\nCopyright (c) 2008--2013, Theano Development Team\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n      notice, this list of conditions and the following disclaimer in the\n      documentation and/or other materials provided with the distribution.\n    * Neither the name of Theano nor the names of its contributors may be\n      used to endorse or promote products derived from this software without\n      specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "DeepLearningTutorials/doc/Makefile",
    "content": "all:\n\tpython scripts/docgen.py\n"
  },
  {
    "path": "DeepLearningTutorials/doc/SdA.txt",
    "content": ".. _SdA:\n\nStacked Denoising Autoencoders (SdA)\n====================================\n\n.. note::\n  This section assumes you have already read through :doc:`logreg`\n  and :doc:`mlp`. Additionally it uses the following Theano functions\n  and concepts : `T.tanh`_, `shared variables`_, `basic arithmetic ops`_, `T.grad`_, `Random numbers`_, `floatX`_. If you intend to run the code on GPU also read `GPU`_.\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html \n\n.. _Random numbers: http://deeplearning.net/software/theano/tutorial/examples.html#using-random-numbers\n\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/SdA.py\n\n\nThe Stacked Denoising Autoencoder (SdA) is an extension of the stacked \nautoencoder [Bengio07]_ and it was introduced in [Vincent08]_. \n\nThis tutorial builds on the previous tutorial :ref:`dA`.\nEspecially if you do not have experience with autoencoders, we recommend reading it\nbefore going any further.\n\n.. _stacked_autoencoders:\n\nStacked Autoencoders\n++++++++++++++++++++\n\nDenoising autoencoders can be stacked to form a deep network by\nfeeding the latent representation (output code)\nof the denoising autoencoder found on the layer \nbelow as input to the current layer. The **unsupervised pre-training** of such an \narchitecture is done one layer at a time. Each layer is trained as \na denoising autoencoder by minimizing the error in reconstructing its input\n(which is the output code of the previous layer).\nOnce the first :math:`k` layers \nare trained, we can train the :math:`k+1`-th layer because we can now \ncompute the code or latent representation from the layer below. \n\nOnce all layers are pre-trained, the network goes through a second stage\nof training called **fine-tuning**. Here we consider **supervised fine-tuning**\nwhere we want to minimize prediction error on a supervised task.\nFor this, we first add a logistic regression \nlayer on top of the network (more precisely on the output code of the\noutput layer). We then\ntrain the entire network as we would train a multilayer \nperceptron. At this point, we only consider the encoding parts of\neach auto-encoder.\nThis stage is supervised, since now we use the target class during\ntraining. (See the :ref:`mlp` for details on the multilayer perceptron.)\n\nThis can be easily implemented in Theano, using the class defined\npreviously for a denoising autoencoder. We can see the stacked denoising\nautoencoder as having two facades: a list of\nautoencoders, and an MLP. During pre-training we use the first facade, i.e., we treat our model\nas a list of autoencoders, and train each autoencoder seperately. In the \nsecond stage of training, we use the second facade. These two facades are linked because:\n\n* the autoencoders and the sigmoid layers of the MLP share parameters, and\n\n* the latent representations computed by intermediate layers of the MLP are fed as input to the autoencoders.\n\n.. literalinclude:: ../code/SdA.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\n``self.sigmoid_layers`` will store the sigmoid layers of the MLP facade, while\n``self.dA_layers`` will store  the denoising autoencoder associated with the layers of the MLP. \n\nNext, we construct ``n_layers`` sigmoid layers and ``n_layers`` denoising \nautoencoders, where ``n_layers`` is the depth of our model. We use the\n``HiddenLayer`` class introduced in :ref:`mlp`, with one\nmodification: we replace the ``tanh`` non-linearity with the\nlogistic function :math:`s(x) = \\frac{1}{1+e^{-x}}`).\nWe link the sigmoid layers to form an MLP, and construct\nthe denoising autoencoders such that each shares the weight matrix and the \nbias of its encoding part with its corresponding sigmoid layer.\n\n.. literalinclude:: ../code/SdA.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nAll we need now is to add a logistic layer on top of the sigmoid\nlayers such that we have an MLP. We will \nuse the ``LogisticRegression`` class introduced in :ref:`logreg`. \n\n.. literalinclude:: ../code/SdA.py\n  :start-after: end-snippet-2\n  :end-before: def pretraining_functions\n\nThe ``SdA`` class also provides a method that generates training functions for\nthe denoising autoencoders in its layers. \nThey are returned as a list, where element :math:`i` is a function that\nimplements one step of training the ``dA`` corresponding to layer \n:math:`i`.\n\n.. literalinclude:: ../code/SdA.py\n  :start-after: self.errors = self.logLayer.errors(self.y)\n  :end-before: corruption_level = T.scalar('corruption')\n\nTo be able to change the corruption level or the learning rate\nduring training, we associate Theano variables with them.\n\n.. literalinclude:: ../code/SdA.py\n  :start-after: index = T.lscalar('index')\n  :end-before: def build_finetune_functions\n \nNow any function ``pretrain_fns[i]`` takes as arguments ``index`` and \noptionally ``corruption``---the corruption level or ``lr``---the\nlearning rate. Note that the names of the parameters are the names given \nto the Theano variables when they are constructed, not the names of the \nPython variables (``learning_rate`` or ``corruption_level``). Keep this \nin mind when working with Theano. \n\nIn the same fashion we build a method for constructing the functions required \nduring finetuning (``train_fn``, ``valid_score`` and\n``test_score``).\n\n.. literalinclude:: ../code/SdA.py\n  :pyobject: SdA.build_finetune_functions\n\nNote that ``valid_score`` and ``test_score`` are not Theano\nfunctions, but rather Python functions that loop over the entire \nvalidation set and the entire test set, respectively, producing a list of the losses\nover these sets.\n\nPutting it all together\n+++++++++++++++++++++++\n\nThe few lines of code below construct the stacked denoising\nautoencoder: \n\n.. literalinclude:: ../code/SdA.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\nThere are two stages of training for this network: layer-wise pre-training \nfollowed by fine-tuning. \n\nFor the pre-training stage, we will loop over all the layers of the\nnetwork. For each layer we will use the compiled Theano function that\nimplements a SGD step towards optimizing the weights for reducing \nthe reconstruction cost of that layer. This function will be applied \nto the training set for a fixed number of epochs given by\n``pretraining_epochs``.\n\n.. literalinclude:: ../code/SdA.py\n  :start-after: start-snippet-4\n  :end-before: end-snippet-4\n\nThe fine-tuning loop is very similar to the one in the :ref:`mlp`. The\nonly difference is that it uses the functions given by\n``build_finetune_functions``.\n\nRunning the Code\n++++++++++++++++\n\nThe user can run the code by calling:\n\n.. code-block:: bash\n  \n  python code/SdA.py\n\nBy default the code runs 15 pre-training epochs for each layer, with a batch\nsize of 1. The corruption levels are 0.1 for the first layer, 0.2 for the second,\nand 0.3 for the third. The pretraining learning rate is 0.001 and \nthe finetuning learning rate is 0.1. Pre-training takes 585.01 minutes, with \nan average of 13 minutes per epoch. Fine-tuning is completed after 36 epochs\nin 444.2 minutes, with an average of 12.34 minutes per epoch. The final \nvalidation score is 1.39% with a testing score of 1.3%. \nThese results were obtained on a machine with an Intel\nXeon E5430 @ 2.66GHz CPU, with a single-threaded GotoBLAS.\n\n\nTips and Tricks\n+++++++++++++++\n\nOne way to improve the running time of your code (assuming you have\nsufficient memory available), is to compute how the network, up to layer\n:math:`k-1`, transforms your data. Namely, you start by training your first\nlayer dA. Once it is trained, you can compute the hidden units values for\nevery datapoint in your dataset and store this as a new dataset that you will\nuse to train the dA corresponding to layer 2. Once you have trained the dA for\nlayer 2, you compute, in a similar fashion, the dataset for layer 3 and so on.\nYou can see now, that at this point, the dAs are trained individually, and\nthey just provide (one to the other) a non-linear transformation of the input.\nOnce all dAs are trained, you can start fine-tuning the model.\n"
  },
  {
    "path": "DeepLearningTutorials/doc/conf.py",
    "content": "# -*- coding: utf-8 -*-\n#\n# theano documentation build configuration file, created by\n# sphinx-quickstart on Tue Oct  7 16:34:06 2008.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# The contents of this file are pickled, so don't put values in the namespace\n# that aren't pickleable (module imports are okay, they're removed automatically).\n#\n# All configuration values have a default value; values that are commented out\n# serve to show the default value.\nimport sys, os\n\n# If your extensions are in another directory, add it here. If the directory\n# is relative to the documentation root, use os.path.abspath to make it\n# absolute, like shown here.\n#sys.path.append(os.path.abspath('some/directory'))\n\n# General configuration\n# ---------------------\n\n# Add any Sphinx extension module names here, as strings. They can be extensions\n# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nextensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo']\n\ntry:\n    from sphinx.ext import pngmath\n    extensions.append('sphinx.ext.pngmath')\nexcept ImportError:\n    print >>sys.stderr, 'Warning: could not import sphinx.ext.pngmath'\n    pass\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['.templates']\n\n# The suffix of source filenames.\nsource_suffix = '.txt'\n\n# The master toctree document.\nmaster_doc = 'contents'\n\n# General substitutions.\nproject = 'DeepLearning'\ncopyright = '2008--2010, LISA lab'\n\n# The default replacements for |version| and |release|, also used in various\n# other places throughout the built documents.\n#\n# The short X.Y version.\nversion = '0.1'\n# The full version, including alpha/beta/rc tags.\nrelease = '0.1'\n\n# There are two options for replacing |today|: either, you set today to some\n# non-false value, then it is used:\n#today = ''\n# Else, today_fmt is used as the format for a strftime call.\ntoday_fmt = '%B %d, %Y'\n\n# List of documents that shouldn't be included in the build.\n#unused_docs = []\n\n# List of directories, relative to source directories, that shouldn't be searched\n# for source files.\nexclude_dirs = ['scripts']\n\n# The reST default role (used for this markup: `text`) to use for all documents.\n#default_role = None\n\n# If true, '()' will be appended to :func: etc. cross-reference text.\n#add_function_parentheses = True\n\n# If true, the current module name will be prepended to all description\n# unit titles (such as .. function::).\n#add_module_names = True\n\n# If true, sectionauthor and moduleauthor directives will be shown in the\n# output. They are ignored by default.\n#show_authors = False\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = 'sphinx'\n\n\n# Options for HTML output\n# -----------------------\n\n# The style sheet to use for HTML and HTML Help pages. A file of that name\n# must exist either in Sphinx' static/ path, or in one of the custom paths\n# given in html_static_path.\n#html_style = 'default.css'\nhtml_theme = 'sphinxdoc'\n\n# The name for this set of Sphinx documents.  If None, it defaults to\n# \"<project> v<release> documentation\".\n#html_title = None\n\n# A shorter title for the navigation bar.  Default is the same as html_title.\n#html_short_title = None\n\n# The name of an image file (within the static path) to place at the top of\n# the sidebar.\n#html_logo = None\n\n# The name of an image file (within the static path) to use as favicon of the\n# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32\n# pixels large.\n#html_favicon = None\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\n#html_static_path = ['.static', 'images']\nhtml_static_path = ['images']\n\n# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,\n# using the given strftime format.\nhtml_last_updated_fmt = '%b %d, %Y'\n\n# If true, SmartyPants will be used to convert quotes and dashes to\n# typographically correct entities.\nhtml_use_smartypants = True\n\n# Custom sidebar templates, maps document names to template names.\n#html_sidebars = {}\n\n# Additional templates that should be rendered to pages, maps page names to\n# template names.\n#html_additional_pages = {}\n\n# If false, no module index is generated.\nhtml_use_modindex = True\n\n# If false, no index is generated.\nhtml_use_index = True\n\n# If true, the index is split into individual pages for each letter.\n#html_split_index = False\n\n# If true, the reST sources are included in the HTML build as _sources/<name>.\n#html_copy_source = True\n\n# If true, an OpenSearch description file will be output, and all pages will\n# contain a <link> tag referring to it.  The value of this option must be the\n# base URL from which the finished HTML is served.\n#html_use_opensearch = ''\n\n# If nonempty, this is the file name suffix for HTML files (e.g. \".xhtml\").\n#html_file_suffix = ''\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = 'deeplearningdoc'\n\n\n# Options for LaTeX output\n# ------------------------\n\n# The paper size ('letter' or 'a4').\n#latex_paper_size = 'letter'\n\n# The font size ('10pt', '11pt' or '12pt').\nlatex_font_size = '11pt'\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, document class [howto/manual]).\nlatex_documents = [\n  ('contents', 'deeplearning.tex', 'Deep Learning Tutorial',\n   'LISA lab, University of Montreal', 'manual'),\n]\n\n# The name of an image file (relative to this directory) to place at the top of\n# the title page.\nlatex_logo = None\n\n# For \"manual\" documents, if this is true, then toplevel headings are parts,\n# not chapters.\n#latex_use_parts = False\n\n# Additional stuff for the LaTeX preamble.\n#latex_preamble = ''\n\n# Documents to append as an appendix to all manuals.\n#latex_appendices = []\n\n# If false, no module index is generated.\n#latex_use_modindex = True\n\ndefault_role = 'math'\npngmath_divpng_args = ['-gamma 1.5','-D 110']\npngmath_latex_preamble =  '\\\\usepackage{amsmath}\\n'+\\\n                          '\\\\usepackage{amsfonts}\\n'+\\\n                          '\\\\usepackage{amssymb}\\n'+\\\n                          '\\\\def\\\\E{\\\\mathbf{E}}\\n'+\\\n                          '\\\\def\\\\F{\\\\mathbf{F}}\\n'+\\\n                          '\\\\def\\\\x{\\\\mathbf{x}}\\n'+\\\n                          '\\\\def\\\\h{\\\\mathbf{h}}\\n'+\\\n                          '\\\\def\\\\v{\\\\mathbf{v}}\\n'+\\\n                          '\\\\def\\\\nv{\\\\mathbf{v^{{\\bf -}}}}\\n'+\\\n                          '\\\\def\\\\nh{\\\\mathbf{h^{{\\bf -}}}}\\n'+\\\n                          '\\\\def\\\\s{\\\\mathbf{s}}\\n'+\\\n                          '\\\\def\\\\b{\\\\mathbf{b}}\\n'+\\\n                          '\\\\def\\\\c{\\\\mathbf{c}}\\n'+\\\n                          '\\\\def\\\\W{\\\\mathbf{W}}\\n'+\\\n                          '\\\\def\\\\C{\\\\mathbf{C}}\\n'+\\\n                          '\\\\def\\\\P{\\\\mathbf{P}}\\n'+\\\n                          '\\\\def\\\\T{{\\\\bf \\\\mathcal T}}\\n'+\\\n                          '\\\\def\\\\B{{\\\\bf \\\\mathcal B}}\\n'\n"
  },
  {
    "path": "DeepLearningTutorials/doc/contents.txt",
    "content": "\n.. _contents:\n\n========\nContents\n========\n\n.. toctree::\n   :maxdepth: 2\n\n   LICENSE\n   index\n   gettingstarted\n   logreg\n   mlp\n   lenet\n   dA\n   SdA\n   rbm\n   DBN\n   hmc\n   rnnslu\n   lstm\n   rnnrbm\n   utilities\n   references\n"
  },
  {
    "path": "DeepLearningTutorials/doc/dA.txt",
    "content": ".. _daa:\n\nDenoising Autoencoders (dA)\n===========================\n\n.. note::\n  This section assumes the reader has already read through :doc:`logreg`\n  and :doc:`mlp`. Additionally it uses the following Theano functions\n  and concepts : `T.tanh`_, `shared variables`_, `basic arithmetic ops`_, `T.grad`_, `Random numbers`_, `floatX`_. If you intend to run the code on GPU also read `GPU`_.\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html\n\n.. _Random numbers: http://deeplearning.net/software/theano/tutorial/examples.html#using-random-numbers\n\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/dA.py\n\n\nThe Denoising Autoencoder (dA) is an extension of a classical\nautoencoder and it was introduced as a building block for deep networks\nin [Vincent08]_. We will start the tutorial with a short discussion on\n:ref:`autoencoders`.\n\n.. _autoencoders:\n\nAutoencoders\n+++++++++++++\n\nSee section 4.6 of [Bengio09]_ for an overview of auto-encoders.\nAn autoencoder takes an input :math:`\\mathbf{x} \\in [0,1]^d` and first\nmaps it (with an *encoder)* to a hidden representation :math:`\\mathbf{y} \\in [0,1]^{d'}`\nthrough a deterministic mapping, e.g.:\n\n.. math::\n\n  \\mathbf{y} = s(\\mathbf{W}\\mathbf{x} + \\mathbf{b})\n\nWhere :math:`s` is a non-linearity such as the sigmoid. The latent\nrepresentation :math:`\\mathbf{y}`, or **code** is then mapped back (with a\n*decoder)* into a **reconstruction** :math:`\\mathbf{z}` of the same shape as\n:math:`\\mathbf{x}`. The mapping happens through a similar transformation, e.g.:\n\n.. math::\n\n  \\mathbf{z} = s(\\mathbf{W'}\\mathbf{y} + \\mathbf{b'})\n\n(Here, the prime symbol does not indicate matrix transposition.)\n:math:`\\mathbf{z}` should be seen as a prediction of :math:`\\mathbf{x}`, given\nthe code :math:`\\mathbf{y}`. Optionally, the weight matrix :math:`\\mathbf{W'}`\nof the reverse mapping may be constrained to be the transpose of the forward\nmapping: :math:`\\mathbf{W'} = \\mathbf{W}^T`. This is referred to as *tied\nweights*. The parameters of this model (namely :math:`\\mathbf{W}`,\n:math:`\\mathbf{b}`, :math:`\\mathbf{b'}` and, if one doesn't use tied weights,\nalso :math:`\\mathbf{W'}`) are optimized such that the average reconstruction\nerror is minimized.\n\nThe reconstruction error can be measured in many ways, depending on the\nappropriate distributional assumptions on the input given the code. The\ntraditional *squared error* :math:`L(\\mathbf{x} \\mathbf{z}) = || \\mathbf{x} -\n\\mathbf{z} ||^2`, can be used. If the input is interpreted as either bit\nvectors or vectors of bit probabilities, *cross-entropy* of the reconstruction\ncan be used:\n\n.. math::\n\n  L_{H} (\\mathbf{x}, \\mathbf{z}) = - \\sum^d_{k=1}[\\mathbf{x}_k \\log\n          \\mathbf{z}_k + (1 - \\mathbf{x}_k)\\log(1 - \\mathbf{z}_k)]\n\nThe hope is that the code :math:`\\mathbf{y}` is a *distributed* representation\nthat captures the coordinates along the main factors of variation in the data.\nThis is similar to the way the projection on principal components would capture\nthe main factors of variation in the data. Indeed, if there is one linear\nhidden layer (the *code)* and the mean squared error criterion is used to train\nthe network, then the :math:`k` hidden units learn to project the input in the\nspan of the first :math:`k` principal components of the data. If the hidden\nlayer is non-linear, the auto-encoder behaves differently from PCA, with the\nability to capture multi-modal aspects of the input distribution. The departure\nfrom PCA becomes even more important when we consider *stacking multiple\nencoders* (and their corresponding decoders) when building a deep auto-encoder\n[Hinton06]_.\n\nBecause :math:`\\mathbf{y}` is viewed as a lossy compression of\n:math:`\\mathbf{x}`, it cannot be a good (small-loss) compression for all\n:math:`\\mathbf{x}`. Optimization makes it a good compression for training\nexamples, and hopefully for other inputs as well, but not for arbitrary inputs.\nThat is the sense in which an auto-encoder generalizes: it gives low\nreconstruction error on test examples from the same distribution as the\ntraining examples, but generally high reconstruction error on samples randomly\nchosen from the input space.\n\nWe want to implement an auto-encoder using Theano, in the form of a class, that\ncould be afterwards used in constructing a stacked autoencoder. The first step\nis to create shared variables for the parameters of the autoencoder\n:math:`\\mathbf{W}`, :math:`\\mathbf{b}` and :math:`\\mathbf{b'}`. (Since we are\nusing tied weights in this tutorial, :math:`\\mathbf{W}^T` will be used for\n:math:`\\mathbf{W'}`):\n\n.. literalinclude:: ../code/dA.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nNote that we pass the symbolic ``input`` to the autoencoder as a parameter.\nThis is so that we can concatenate layers of autoencoders to form a deep\nnetwork: the symbolic output (the :math:`\\mathbf{y}` above) of layer :math:`k` will\nbe the symbolic input of layer :math:`k+1`.\n\nNow we can express the computation of the latent representation and of the reconstructed\nsignal:\n\n.. literalinclude:: ../code/dA.py\n  :pyobject: dA.get_hidden_values\n\n.. literalinclude:: ../code/dA.py\n  :pyobject: dA.get_reconstructed_input\n\nAnd using these function we can compute the cost and the updates of\none stochastic gradient descent step :\n\n.. literalinclude:: ../code/dA.py\n  :pyobject: dA.get_cost_updates\n\nWe can now define a function that applied iteratively will update the\nparameters ``W``, ``b`` and ``b_prime`` such that the\nreconstruction cost is approximately minimized.\n\n.. literalinclude:: ../code/dA.py\n  :start-after: theano_rng = RandomStreams(rng.randint(2 ** 30))\n  :end-before: start_time = time.clock()\n\nIf there is no constraint besides minimizing the reconstruction error, one\nmight expect an auto-encoder with :math:`n` inputs and an encoding of dimension\n:math:`n` (or greater) to learn the identity function, merely mapping an input\nto its copy. Such an autoencoder would not differentiate test examples (from\nthe training distribution) from other input configurations. \n\nSurprisingly,\nexperiments reported in [Bengio07]_ suggest that, in practice, when trained\nwith stochastic gradient descent, non-linear auto-encoders with more hidden\nunits than inputs (called overcomplete) yield useful representations. (Here,\n\"useful\" means that a network taking the encoding as input has low\nclassification error.) \n\nA simple explanation is that stochastic gradient descent with early stopping is\nsimilar to an L2 regularization of the parameters. To achieve perfect\nreconstruction of continuous inputs, a one-hidden layer auto-encoder with\nnon-linear hidden units (exactly like in the above code) needs very small\nweights in the first (encoding) layer, to bring the non-linearity of the hidden\nunits into their linear regime, and very large weights in the second (decoding)\nlayer. With binary inputs, very large weights are also needed to completely\nminimize the reconstruction error. Since the implicit or explicit\nregularization makes it difficult to reach large-weight solutions, the\noptimization algorithm finds encodings which only work well for examples\nsimilar to those in the training set, which is what we want. It means that the\n*representation is exploiting statistical regularities present in the training\nset,* rather than merely learning to replicate the input.\n\nThere are other ways by which an auto-encoder with more hidden units than inputs\ncould be prevented from learning the identity function, capturing something\nuseful about the input in its hidden representation. One is the addition of\n*sparsity* (forcing many of the hidden units to be zero or near-zero). Sparsity\nhas been exploited very successfully by many [Ranzato07]_ [Lee08]_. Another is\nto add randomness in the transformation from input to reconstruction. This\ntechnique is used in Restricted Boltzmann Machines (discussed later in\n:ref:`rbm`), as well as in Denoising Auto-Encoders, discussed below.\n\n.. _DA:\n\nDenoising Autoencoders\n++++++++++++++++++++++\n\nThe idea behind denoising autoencoders is simple. In order to force\nthe hidden layer to discover more robust features and prevent it\nfrom simply learning the identity, we train the\nautoencoder to *reconstruct the input from a corrupted version of it*.\n\nThe denoising auto-encoder is a stochastic version of the auto-encoder.\nIntuitively, a denoising auto-encoder does two things: try to encode the input\n(preserve the information about the input), and try to undo the effect of a\ncorruption process stochastically applied to the input of the auto-encoder. The\nlatter can only be done by capturing the statistical dependencies between the\ninputs. The denoising auto-encoder can be understood from different\nperspectives (the manifold learning perspective, stochastic operator\nperspective, bottom-up -- information theoretic perspective, top-down --\ngenerative model perspective), all of which are explained in [Vincent08]_. See\nalso section 7.2 of [Bengio09]_ for an overview of auto-encoders.\n\nIn [Vincent08]_, the stochastic corruption process randomly sets some of the\ninputs (as many as half of them) to zero. Hence the denoising auto-encoder is\ntrying to *predict the corrupted (i.e. missing) values from the uncorrupted\n(i.e., non-missing) values*, for randomly selected subsets of missing patterns.\nNote how being able to predict any subset of variables from the rest is a\nsufficient condition for completely capturing the joint distribution between a\nset of variables (this is how Gibbs sampling works).\n\nTo convert the autoencoder class into a denoising autoencoder class, all we\nneed to do is to add a stochastic corruption step operating on the input. The input can be\ncorrupted in many ways, but in this tutorial we will stick to the original\ncorruption mechanism of randomly masking entries of the input by making\nthem zero. The code below\ndoes just that :\n\n.. code-block:: python\n\n  from theano.tensor.shared_randomstreams import RandomStreams\n\n  def get_corrupted_input(self, input, corruption_level):\n        \"\"\" This function keeps ``1-corruption_level`` entries of the inputs the same\n        and zero-out randomly selected subset of size ``coruption_level``\n        Note : first argument of theano.rng.binomial is the shape(size) of\n               random numbers that it should produce\n               second argument is the number of trials\n               third argument is the probability of success of any trial\n\n                this will produce an array of 0s and 1s where 1 has a probability of\n                1 - ``corruption_level`` and 0 with ``corruption_level``\n        \"\"\"\n        return  self.theano_rng.binomial(size=input.shape, n=1, p=1 - corruption_level) * input\n\n\n\nIn the stacked autoencoder class (:ref:`stacked_autoencoders`) the weights of\nthe ``dA`` class have to be shared with those of a corresponding sigmoid layer.\nFor this reason, the constructor of the ``dA`` also gets Theano variables\npointing to the shared parameters. If those parameters are left to ``None``,\nnew ones will be constructed.\n\nThe final denoising autoencoder class becomes :\n\n.. code-block:: python\n\n class dA(object):\n    \"\"\"Denoising Auto-Encoder class (dA)\n\n    A denoising autoencoders tries to reconstruct the input from a corrupted\n    version of it by projecting it first in a latent space and reprojecting\n    it afterwards back in the input space. Please refer to Vincent et al.,2008\n    for more details. If x is the input then equation (1) computes a partially\n    destroyed version of x by means of a stochastic mapping q_D. Equation (2)\n    computes the projection of the input into the latent space. Equation (3)\n    computes the reconstruction of the input, while equation (4) computes the\n    reconstruction error.\n\n    .. math::\n\n        \\tilde{x} ~ q_D(\\tilde{x}|x)                                     (1)\n\n        y = s(W \\tilde{x} + b)                                           (2)\n\n        x = s(W' y  + b')                                                (3)\n\n        L(x,z) = -sum_{k=1}^d [x_k \\log z_k + (1-x_k) \\log( 1-z_k)]      (4)\n\n    \"\"\"\n\n    def __init__(self, numpy_rng, theano_rng=None, input=None, n_visible=784, n_hidden=500,\n               W=None, bhid=None, bvis=None):\n        \"\"\"\n        Initialize the dA class by specifying the number of visible units (the\n        dimension d of the input ), the number of hidden units ( the dimension\n        d' of the latent or hidden space ) and the corruption level. The\n        constructor also receives symbolic variables for the input, weights and\n        bias. Such a symbolic variables are useful when, for example the input is\n        the result of some computations, or when weights are shared between the\n        dA and an MLP layer. When dealing with SdAs this always happens,\n        the dA on layer 2 gets as input the output of the dA on layer 1,\n        and the weights of the dA are used in the second stage of training\n        to construct an MLP.\n\n        :type numpy_rng: numpy.random.RandomState\n        :param numpy_rng: number random generator used to generate weights\n\n        :type theano_rng: theano.tensor.shared_randomstreams.RandomStreams\n        :param theano_rng: Theano random generator; if None is given one is generated\n                     based on a seed drawn from `rng`\n\n        :type input: theano.tensor.TensorType\n        :paran input: a symbolic description of the input or None for standalone\n                      dA\n\n        :type n_visible: int\n        :param n_visible: number of visible units\n\n        :type n_hidden: int\n        :param n_hidden:  number of hidden units\n\n        :type W: theano.tensor.TensorType\n        :param W: Theano variable pointing to a set of weights that should be\n                  shared belong the dA and another architecture; if dA should\n                  be standalone set this to None\n\n        :type bhid: theano.tensor.TensorType\n        :param bhid: Theano variable pointing to a set of biases values (for\n                     hidden units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n        :type bvis: theano.tensor.TensorType\n        :param bvis: Theano variable pointing to a set of biases values (for\n                     visible units) that should be shared belong dA and another\n                     architecture; if dA should be standalone set this to None\n\n\n        \"\"\"\n        self.n_visible = n_visible\n        self.n_hidden = n_hidden\n\n        # create a Theano random generator that gives symbolic random values\n        if not theano_rng :\n            theano_rng = RandomStreams(rng.randint(2 ** 30))\n\n        # note : W' was written as `W_prime` and b' as `b_prime`\n        if not W:\n            # W is initialized with `initial_W` which is uniformely sampled\n            # from -4.*sqrt(6./(n_visible+n_hidden)) and 4.*sqrt(6./(n_hidden+n_visible))\n            # the output of uniform if converted using asarray to dtype\n            # theano.config.floatX so that the code is runable on GPU\n            initial_W = numpy.asarray(numpy_rng.uniform(\n                      low=-4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                      high=4 * numpy.sqrt(6. / (n_hidden + n_visible)),\n                      size=(n_visible, n_hidden)), dtype=theano.config.floatX)\n            W = theano.shared(value=initial_W, name='W')\n\n        if not bvis:\n            bvis = theano.shared(value = numpy.zeros(n_visible,\n                                         dtype=theano.config.floatX), name='bvis')\n\n        if not bhid:\n            bhid = theano.shared(value=numpy.zeros(n_hidden,\n                                              dtype=theano.config.floatX), name='bhid')\n\n        self.W = W\n        # b corresponds to the bias of the hidden\n        self.b = bhid\n        # b_prime corresponds to the bias of the visible\n        self.b_prime = bvis\n        # tied weights, therefore W_prime is W transpose\n        self.W_prime = self.W.T\n        self.theano_rng = theano_rng\n        # if no input is given, generate a variable representing the input\n        if input == None:\n            # we use a matrix because we expect a minibatch of several examples,\n            # each example being a row\n            self.x = T.dmatrix(name='input')\n        else:\n            self.x = input\n\n        self.params = [self.W, self.b, self.b_prime]\n\n    def get_corrupted_input(self, input, corruption_level):\n        \"\"\" This function keeps ``1-corruption_level`` entries of the inputs the same\n        and zero-out randomly selected subset of size ``coruption_level``\n        Note : first argument of theano.rng.binomial is the shape(size) of\n               random numbers that it should produce\n               second argument is the number of trials\n               third argument is the probability of success of any trial\n\n                this will produce an array of 0s and 1s where 1 has a probability of\n                1 - ``corruption_level`` and 0 with ``corruption_level``\n        \"\"\"\n        return  self.theano_rng.binomial(size=input.shape, n=1, p=1 - corruption_level) * input\n\n\n    def get_hidden_values(self, input):\n        \"\"\" Computes the values of the hidden layer \"\"\"\n        return T.nnet.sigmoid(T.dot(input, self.W) + self.b)\n\n    def get_reconstructed_input(self, hidden ):\n        \"\"\" Computes the reconstructed input given the values of the hidden layer \"\"\"\n        return  T.nnet.sigmoid(T.dot(hidden, self.W_prime) + self.b_prime)\n\n    def get_cost_updates(self, corruption_level, learning_rate):\n        \"\"\" This function computes the cost and the updates for one trainng\n        step of the dA \"\"\"\n\n        tilde_x = self.get_corrupted_input(self.x, corruption_level)\n        y = self.get_hidden_values( tilde_x)\n        z = self.get_reconstructed_input(y)\n        # note : we sum over the size of a datapoint; if we are using minibatches,\n        #        L will  be a vector, with one entry per example in minibatch\n        L = -T.sum(self.x * T.log(z) + (1 - self.x) * T.log(1 - z), axis=1 )\n        # note : L is now a vector, where each element is the cross-entropy cost\n        #        of the reconstruction of the corresponding example of the\n        #        minibatch. We need to compute the average of all these to get\n        #        the cost of the minibatch\n        cost = T.mean(L)\n\n        # compute the gradients of the cost of the `dA` with respect\n        # to its parameters\n        gparams = T.grad(cost, self.params)\n        # generate the list of updates\n        updates = []\n        for param, gparam in zip(self.params, gparams):\n            updates.append((param, param - learning_rate * gparam))\n\n        return (cost, updates)\n\n\n\nPutting it All Together\n+++++++++++++++++++++++\n\n\nIt is easy now to construct an instance of our ``dA`` class and train\nit.\n\n.. code-block:: python\n\n    # allocate symbolic variables for the data\n    index = T.lscalar()  # index to a [mini]batch\n    x = T.matrix('x')  # the data is presented as rasterized images\n\n    ######################\n    # BUILDING THE MODEL #\n    ######################\n\n    rng = numpy.random.RandomState(123)\n    theano_rng = RandomStreams(rng.randint(2 ** 30))\n\n    da = dA(numpy_rng=rng, theano_rng=theano_rng, input=x,\n            n_visible=28 * 28, n_hidden=500)\n\n    cost, updates = da.get_cost_updates(corruption_level=0.2,\n                                learning_rate=learning_rate)\n\n\n    train_da = theano.function([index], cost, updates=updates,\n         givens = {x: train_set_x[index * batch_size: (index + 1) * batch_size]})\n\n    start_time = time.clock()\n\n    ############\n    # TRAINING #\n    ############\n\n    # go through training epochs\n    for epoch in xrange(training_epochs):\n        # go through trainng set\n        c = []\n        for batch_index in xrange(n_train_batches):\n            c.append(train_da(batch_index))\n\n        print 'Training epoch %d, cost ' % epoch, numpy.mean(c)\n\n    end_time = time.clock\n\n    training_time = (end_time - start_time)\n\n    print ('Training took %f minutes' % (pretraining_time / 60.))\n\nIn order to get a feeling of what the network learned we are going to\nplot the filters (defined by the weight matrix). Bear in mind, however,\nthat this does not provide the entire story,\nsince we neglect the biases and plot the weights up to a multiplicative\nconstant (weights are converted to values between 0 and 1).\n\nTo plot our filters we will need the help of ``tile_raster_images`` (see\n:ref:`how-to-plot`) so we urge the reader to familiarize himself with it. Also\nusing the help of the Python Image Library, the following lines of code will\nsave the filters as an image :\n\n.. code-block:: python\n\n    image = Image.fromarray(tile_raster_images(X=da.W.get_value(borrow=True).T,\n                 img_shape=(28, 28), tile_shape=(10, 10),\n                 tile_spacing=(1, 1)))\n    image.save('filters_corruption_30.png')\n\n\nRunning the Code\n++++++++++++++++\n\nTo run the code :\n\n.. code-block:: bash\n\n  python dA.py\n\nThe resulted filters when we do not use any noise are :\n\n.. figure:: images/filters_corruption_0.png\n    :align: center\n\n\n\nThe filters for 30 percent noise :\n\n\n.. figure:: images/filters_corruption_30.png\n    :align: center\n\n\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/deep.txt",
    "content": ".. _deep:\n\nDeep Learning\n=============\n\nThe breakthrough to effective training strategies for deep architectures came in\n2006 with the algorithms for training deep belief networks\n(DBN) [Hinton07]_ and stacked auto-encoders [Ranzato07]_ , [Bengio07]_ .\nAll these methods are based on a similar approach: **greedy layer-wise unsupervised\npre-training** followed by **supervised fine-tuning**.\n\nThe pretraining strategy consists in using unsupervised learning to guide the\ntraining of intermediate levels of representation. Each layer is pre-trained\nwith an unsupervised learning algorithm, which attempts to learn a nonlinear\ntransformation of its input, in order to captures its main variations.  Higher\nlevels of abstractions are created by feeding the output of one layer, to the\ninput of the subsequent layer.\n\nThe resulting an architecture can then be seen in two lights:\n\n* the pre-trained deep network can be used to initialize the weights of all, but\n  the last layer of a deep neural network. The weights are then further adapted\n  to a supervised task (such as classification) through traditional gradient\n  descent (see :ref:`Multilayer perceptron <mlp>`). This is referred to as the\n  fine-tuning step.\n\n* the pre-trained deep network can also serve solely as a feature extractor. The\n  output of the last layer is fed to a classifier, such as logistic regression,\n  which is trained independently. Better results can be obtained by\n  concatenating the output of the last layer, with the hidden representations of\n  all intermediate layers [Lee09]_.\n\nFor the purposes of this tutorial, we will focus on the first interpretation,\nas that is what was first proposed in [Hinton06]_. \n\nDeep Coding\n+++++++++++\n\nSince Deep Belief Networks (DBN) and Stacked Denoising-AutoEncoders (SDA) share\nmuch of the same architecture and have very similar training algorithms (in\nterms of pretraining and fine-tuning stages), it makes sense to implement them\nin a similar fashion, as part of a \"Deep Learning\" framework.\n\nWe thus define a generic interface, which both of these architectures will\nshare.\n\n.. code-block:: python\n\n    class DeepLayerwiseModel(object):\n\n        def layerwise_pretrain(self, layer_fns, pretrain_amounts):\n            \"\"\"\n            \"\"\"\n\n        def finetune(self, datasets, lr, batch_size):\n            \"\"\"\n\n    class DBN(DeepLayerwiseModel):\n        \"\"\"\n        \"\"\"\n\n    class StackedDAA(DeepLayerwiseModel):\n        \"\"\"\n        \"\"\"\n\n.. code-block:: python\n\n    def deep_main(learning_rate=0.1,\n            pretraining_epochs=20,\n            pretrain_lr=0.1,\n            training_epochs=1000,\n            batch_size=20,\n            mnist_file='mnist.pkl.gz'):\n     \n        n_train_examples, train_valid_test = load_mnist(mnist_file)\n\n        # instantiate model\n        deep_model = ...\n\n        ####\n        #### Phase 1: Pre-training\n        ####\n\n        # create an array of functions, which will be used for the greedy\n        # layer-wise unsupervised training procedure\n\n        pretrain_functions = deep_model.pretrain_functions(\n                batch_size=batch_size,\n                train_set_x=train_set_x,\n                learning_rate=pretrain_lr,\n                ...\n                )\n\n        # loop over all the layers in our network\n        for layer_idx, pretrain_fn in enumerate(pretrain_functions):\n\n            # iterate over a certain number of epochs) \n            for i in xrange(pretraining_epochs * n_train_examples / batch_size):\n\n                # follow one step in the gradient of the unsupervised cost\n                # function, at the given layer\n                layer_fn(i)\n    \n\n.. code-block:: python\n\n        ####\n        #### Phase 2: Fine Tuning\n        ####\n\n        # create theano functions for fine-tuning, as well as\n        # validation and testing our model.\n\n        train_fn, valid_scores, test_scores =\\\n            deep_model.finetune_functions(\n                train_valid_test[0][0],       # training dataset\n                learning_rate=finetune_lr,    # the learning rate\n                batch_size=batch_size)        # number of examples to use at once\n\n        \n        # use these functions as part of the generic early-stopping procedure\n        for i in xrange(patience_max):\n\n            if i >= patience:\n                break\n\n            cost_i = train_fn(i)\n\n            ...\n\n\n\n\n\n\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/gettingstarted.txt",
    "content": ".. _gettingstarted:\n\n\n===============\nGetting Started\n===============\n\nThese tutorials do not attempt to make up for a graduate or undergraduate course\nin machine learning, but we do make a rapid overview of some important concepts\n(and notation) to make sure that we're on the same page.  You'll also need to\ndownload the datasets mentioned in this chapter in order to run the example code of\nthe up-coming tutorials.\n\n.. _download:\n\n.. index:: Download:\n\nDownload\n========\n\nOn each learning algorithm page, you will be able to download the corresponding files. If you want to download all of them at the same time, you can clone the git repository of the tutorial::\n\n    git clone git://github.com/lisa-lab/DeepLearningTutorials.git\n\n\n.. _datasets:\n\n.. index:: Datasets\n\nDatasets\n========\n\n.. index:: MNIST Dataset\n\nMNIST Dataset\n+++++++++++++\n\n(`mnist.pkl.gz <http://deeplearning.net/data/mnist/mnist.pkl.gz>`_)\n\n The `MNIST <http://yann.lecun.com/exdb/mnist>`_ dataset consists of handwritten\n digit images and it is divided in 60,000 examples for the training set and\n 10,000 examples for testing. In many papers as well as in this tutorial, the\n official training set of 60,000 is divided into an actual training set of 50,000\n examples and 10,000 validation examples (for selecting hyper-parameters like\n learning rate and size of the model). All digit images have been size-normalized and\n centered in a fixed size image of 28 x 28 pixels. In the original dataset\n each pixel of the image is represented by a value between 0 and 255, where\n 0 is black, 255 is  white and anything in between is a different shade of grey.\n\n\n Here are some examples of MNIST digits:\n\n    |0| |1| |2| |3| |4| |5|\n\n .. |0| image:: images/mnist_0.png\n .. |1| image:: images/mnist_1.png\n .. |2| image:: images/mnist_2.png\n .. |3| image:: images/mnist_3.png\n .. |4| image:: images/mnist_4.png\n .. |5| image:: images/mnist_5.png\n\n For convenience we pickled the dataset to make it easier to use in python.\n It is available for download `here <http://deeplearning.net/data/mnist/mnist.pkl.gz>`_.\n The pickled file represents a tuple of 3 lists : the training set, the\n validation set and the testing set. Each of the three lists is a pair\n formed from a list of images and a list of class labels for each of the\n images. An image is represented as numpy 1-dimensional array of 784 (28\n x 28) float values between 0 and 1 (0 stands for black, 1 for white).\n The labels are numbers between 0 and 9 indicating which digit the image\n represents. The code block below shows how to load the dataset.\n\n\n .. code-block:: python\n\n    import cPickle, gzip, numpy\n\n    # Load the dataset\n    f = gzip.open('mnist.pkl.gz', 'rb')\n    train_set, valid_set, test_set = cPickle.load(f)\n    f.close()\n\n\n When using the dataset, we usually divide it in minibatches (see\n :ref:`opt_SGD`). We encourage you to store the dataset into shared\n variables and access it based on the minibatch index, given a fixed\n and known batch size. The reason behind shared variables is\n related to using the GPU. There is a large overhead when copying data\n into the GPU memory. If you would copy data on request ( each minibatch\n individually when needed) as the code will do if you do not use shared\n variables, due to this overhead, the GPU code will not be much faster\n then the CPU code (maybe even slower). If you have your data in\n Theano shared variables though, you give Theano the possibility to copy\n the entire data on the GPU in a single call when the shared variables are constructed.\n Afterwards the GPU can access any minibatch by taking a slice from this\n shared variables, without needing to copy any information from the CPU\n memory and therefore bypassing the overhead.\n Because the datapoints and their labels are usually of different nature\n (labels are usually integers while datapoints are real numbers) we\n suggest to use different variables for labes and data. Also we recomand\n using different variables for the training set, validation set and\n testing set to make the code more readable (resulting in 6 different\n shared variables).\n\n Since now the data is in one variable, and a minibatch is defined as a\n slice of that variable, it comes more natural to define a minibatch by\n indicating its index and its size. In our setup the batch size stays constant\n through out the execution of the code, therefore a function will actually\n require only the index to identify on which datapoints to work.\n The code below shows how to store your data and how to\n access a minibatch:\n\n\n .. code-block:: python\n\n    def shared_dataset(data_xy):\n        \"\"\" Function that loads the dataset into shared variables\n\n        The reason we store our dataset in shared variables is to allow\n        Theano to copy it into the GPU memory (when code is run on GPU).\n        Since copying data into the GPU is slow, copying a minibatch everytime\n        is needed (the default behaviour if the data is not in a shared\n        variable) would lead to a large decrease in performance.\n        \"\"\"\n        data_x, data_y = data_xy\n        shared_x = theano.shared(numpy.asarray(data_x, dtype=theano.config.floatX))\n        shared_y = theano.shared(numpy.asarray(data_y, dtype=theano.config.floatX))\n        # When storing data on the GPU it has to be stored as floats\n        # therefore we will store the labels as ``floatX`` as well\n        # (``shared_y`` does exactly that). But during our computations\n        # we need them as ints (we use labels as index, and if they are\n        # floats it doesn't make sense) therefore instead of returning\n        # ``shared_y`` we will have to cast it to int. This little hack\n        # lets us get around this issue\n        return shared_x, T.cast(shared_y, 'int32')\n\n    test_set_x, test_set_y = shared_dataset(test_set)\n    valid_set_x, valid_set_y = shared_dataset(valid_set)\n    train_set_x, train_set_y = shared_dataset(train_set)\n\n    batch_size = 500    # size of the minibatch\n\n    # accessing the third minibatch of the training set\n\n    data  = train_set_x[2 * 500: 3 * 500]\n    label = train_set_y[2 * 500: 3 * 500]\n\n\nThe data has to be stored as floats on the GPU ( the right\n``dtype`` for storing on the GPU is given by ``theano.config.floatX``).\nTo get around this shortcomming for the labels, we store them as float,\nand then cast it to int.\n\n.. note::\n\n    If you are running your code on the GPU and the dataset you are using\n    is too large to fit in memory the code will crash. In such a case you\n    should store the data in a shared variable. You can however store a\n    sufficiently small chunk of your data (several minibatches) in a shared\n    variable and use that during training. Once you got through the chunk,\n    update the values it stores. This way you minimize the number of data\n    transfers between CPU memory and GPU memory.\n\n\n\n.. index:: Notation\n\nNotation\n========\n\n.. index:: Dataset notation\n\nDataset notation\n++++++++++++++++\n\nWe label data sets as :math:`\\mathcal{D}`. When the distinction is important, we\nindicate train, validation, and test sets as: :math:`\\mathcal{D}_{train}`,\n:math:`\\mathcal{D}_{valid}` and :math:`\\mathcal{D}_{test}`. The validation set\nis used to perform model selection and hyper-parameter selection, whereas\nthe test set is used to evaluate the final generalization error and\ncompare different algorithms in an unbiased way.\n\nThe tutorials mostly deal with classification problems, where each data set\n:math:`\\mathcal{D}` is an indexed set of pairs :math:`(x^{(i)},y^{(i)})`. We\nuse superscripts to distinguish training set examples: :math:`x^{(i)} \\in\n\\mathcal{R}^D` is thus the i-th training example of dimensionality :math:`D`. Similarly,\n:math:`y^{(i)} \\in \\{0, ..., L\\}` is the i-th label assigned to input\n:math:`x^{(i)}`. It is straightforward to extend these examples to\nones where :math:`y^{(i)}` has other types (e.g. Gaussian for regression,\nor groups of multinomials for predicting multiple symbols).\n\n.. index:: Math Convetions\n\nMath Conventions\n++++++++++++++++\n\n* :math:`W`: upper-case symbols refer to a matrix unless specified otherwise\n* :math:`W_{ij}`: element at i-th row and j-th column of matrix :math:`W`\n* :math:`W_{i \\cdot}, W_i`: vector, i-th row of matrix :math:`W`\n* :math:`W_{\\cdot j}`: vector, j-th column of matrix :math:`W`\n* :math:`b`: lower-case symbols refer to a vector unless specified otherwise\n* :math:`b_i`: i-th element of vector :math:`b`\n\n.. index:: List of Symbols and acronyms\n\nList of Symbols and acronyms\n++++++++++++++++++++++++++++\n\n* :math:`D`: number of input dimensions.\n* :math:`D_h^{(i)}`: number of hidden units in the :math:`i`-th layer.\n* :math:`f_{\\theta}(x)`, :math:`f(x)`: classification function associated with a model :math:`P(Y|x,\\theta)`, defined as :math:`{\\rm argmax}_k P(Y=k|x,\\theta)`.\n  Note that we will often drop the :math:`\\theta` subscript.\n* L: number of labels.\n* :math:`\\mathcal{L}(\\theta, \\cal{D})`: log-likelihood :math:`\\cal{D}`\n  of the model defined by parameters :math:`\\theta`.\n* :math:`\\ell(\\theta, \\cal{D})` empirical loss of the prediction function f\n  parameterized by :math:`\\theta` on data set :math:`\\cal{D}`.\n* NLL: negative log-likelihood\n* :math:`\\theta`: set of all parameters for a given model\n\n.. index:: Python Namespaces\n\nPython Namespaces\n+++++++++++++++++\n\nTutorial code often uses the following namespaces:\n\n.. code-block:: python\n\n    import theano\n    import theano.tensor as T\n    import numpy\n\n\n\nA Primer on Supervised Optimization for Deep Learning\n=====================================================\n\n.. _stoch-grad-label:\n\nWhat's exciting about Deep Learning is largely the use of unsupervised learning\nof deep networks.  But supervised learning also plays an important role.  The\nutility of unsupervised *pre-training* is often evaluated on the basis of what\nperformance can be achieved after supervised *fine-tuning*.  This chapter\nreviews the basics of supervised learning for classification models, and covers\nthe minibatch stochastic gradient descent algorithm that is used to fine-tune\nmany of the models in the Deep Learning Tutorials. Have a look at these\n`introductory course notes on gradient-based learning <http://www.iro.umontreal.ca/~pift6266/H10/notes/gradient.html>`_\nfor more basics on the notion of optimizing a training criterion using the gradient.\n\n\n.. _opt_learn_classifier:\n\n\nLearning a Classifier\n+++++++++++++++++++++\n\n.. index:: Zero-One Loss\n\nZero-One Loss\n-------------\n\nThe models presented in these deep learning tutorials are mostly used\nfor classification. The objective in training a classifier is to minimize the number\nof errors (zero-one loss) on unseen examples. If :math:`f: R^D \\rightarrow\n\\{0,...,L\\}` is the prediction function, then this loss can be written as:\n\n.. math::\n\n    \\ell_{0,1} = \\sum_{i=0}^{|\\mathcal{D}|} I_{f(x^{(i)}) \\neq y^{(i)}}\n\nwhere either :math:`\\mathcal{D}` is the training\nset (during training)\nor :math:`\\mathcal{D} \\cap \\mathcal{D}_{train} = \\emptyset`\n(to avoid biasing the evaluation of validation or test error). :math:`I` is the\nindicator function defined as:\n\n.. math::\n\n    I_x = \\left\\{\\begin{array}{ccc}\n          1&\\mbox{ if $x$ is True} \\\\\n          0&\\mbox{ otherwise}\\end{array}\\right.\n\nIn this tutorial, :math:`f` is defined as:\n\n.. math::\n\n    f(x) = {\\rm argmax}_k P(Y=k | x, \\theta)\n\nIn python, using Theano this can be written as :\n\n.. code-block:: python\n\n  # zero_one_loss is a Theano variable representing a symbolic\n  # expression of the zero one loss ; to get the actual value this\n  # symbolic expression has to be compiled into a Theano function (see\n  # the Theano tutorial for more details)\n  zero_one_loss = T.sum(T.neq(T.argmax(p_y_given_x), y))\n\n\n.. index:: Negative Log--Likelihood Loss\n\nNegative Log-Likelihood Loss\n----------------------------\n\nSince the zero-one loss is not differentiable, optimizing it for large models\n(thousands or millions of parameters) is prohibitively expensive\n(computationally). We thus maximize the log-likelihood of our classifier given\nall the labels in a training set.\n\n.. math::\n\n    \\mathcal{L}(\\theta, \\mathcal{D}) =\n        \\sum_{i=0}^{|\\mathcal{D}|} \\log P(Y=y^{(i)} | x^{(i)}, \\theta)\n\nThe likelihood of the correct class is not the same as the\nnumber of right predictions, but from the point of view of a randomly\ninitialized classifier they are pretty similar.\nRemember that likelihood and zero-one loss are different objectives;\nyou should see that they are corralated on the validation set but\nsometimes one will rise while the other falls, or vice-versa.\n\nSince we usually speak in terms of minimizing a loss function, learning will\nthus attempt to **minimize** the **negative** log-likelihood (NLL), defined\nas:\n\n.. math::\n\n    NLL(\\theta, \\mathcal{D}) = - \\sum_{i=0}^{|\\mathcal{D}|} \\log P(Y=y^{(i)} | x^{(i)}, \\theta)\n\nThe NLL of our classifier is a differentiable surrogate for the zero-one loss,\nand we use the gradient of this function over our training data as a\nsupervised learning signal for deep learning of a classifier.\n\nThis can be computed using the following line of code :\n\n.. code-block:: python\n\n  # NLL is a symbolic variable ; to get the actual value of NLL, this symbolic\n  # expression has to be compiled into a Theano function (see the Theano\n  # tutorial for more details)\n  NLL = -T.sum(T.log(p_y_given_x)[T.arange(y.shape[0]), y])\n  # note on syntax: T.arange(y.shape[0]) is a vector of integers [0,1,2,...,len(y)].\n  # Indexing a matrix M by the two vectors [0,1,...,K], [a,b,...,k] returns the\n  # elements M[0,a], M[1,b], ..., M[K,k] as a vector.  Here, we use this\n  # syntax to retrieve the log-probability of the correct labels, y.\n\n\n.. index:: Stochastic Gradient Descent\n\n.. _opt_SGD:\n\nStochastic Gradient Descent\n+++++++++++++++++++++++++++\n\nWhat is ordinary gradient descent?  it is a simple\nalgorithm in which we repeatedly make small steps downward on an error\nsurface defined by a loss function of some parameters.\nFor the purpose of ordinary gradient descent we consider that the training\ndata is rolled into the loss function. Then the pseudocode of this\nalgorithm can be described as :\n\n.. code-block:: python\n\n    # GRADIENT DESCENT\n\n    while True:\n        loss = f(params)\n        d_loss_wrt_params = ... # compute gradient\n        params -= learning_rate * d_loss_wrt_params\n        if <stopping condition is met>:\n            return params\n\nStochastic gradient descent (SGD) works according to the same principles as\nordinary gradient descent, but proceeds more quickly by estimating the gradient from just\na few examples at a time instead of the entire training set.  In its purest\nform, we estimate the gradient from just a single example at a time.\n\n.. code-block:: python\n\n    # STOCHASTIC GRADIENT DESCENT\n    for (x_i,y_i) in training_set:\n                                # imagine an infinite generator\n                                # that may repeat examples (if there is only a finite training set)\n        loss = f(params, x_i, y_i)\n        d_loss_wrt_params = ... # compute gradient\n        params -= learning_rate * d_loss_wrt_params\n        if <stopping condition is met>:\n            return params\n\nThe variant that we recommend for deep learning is a further twist on\nstochastic gradient descent using so-called \"minibatches\".\nMinibatch SGD works identically to SGD, except that we use more than\none training example to make each estimate of the gradient.  This technique reduces\nvariance in the estimate of the gradient, and often makes better use of the\nhierarchical memory organization in modern computers.\n\n.. code-block:: python\n\n    for (x_batch,y_batch) in train_batches:\n                                # imagine an infinite generator\n                                # that may repeat examples\n        loss = f(params, x_batch, y_batch)\n        d_loss_wrt_params = ... # compute gradient using theano\n        params -= learning_rate * d_loss_wrt_params\n        if <stopping condition is met>:\n            return params\n\n\nThere is a tradeoff in the choice of the minibatch size :math:`B`.  The\nreduction of variance and use of SIMD instructions helps most when increasing\n:math:`B` from 1 to 2, but the marginal improvement fades rapidly to nothing.\nWith large :math:`B`, time is wasted in reducing the variance of the gradient\nestimator, that time would be better spent on additional gradient steps.\nAn optimal :math:`B` is model-, dataset-, and hardware-dependent, and can be\nanywhere from 1 to maybe several hundreds.  In the tutorial we set it to 20,\nbut this choice is almost arbitrary (though harmless).\n\n.. note::\n\n    If you are training for a fixed number of epochs, the minibatch size becomes important\n    because it controls the number of updates done to your parameters. Training the same model\n    for 10 epochs using a batch size of 1 yields completely different results compared\n    to training for the same 10 epochs but with a batchsize of 20. Keep this in mind when\n    switching between batch sizes and be prepared to tweak all the other parameters acording\n    to the batch size used.\n\nAll code-blocks above show pseudocode of how the algorithm looks like. Implementing such\nalgorithm in Theano can be done as follows :\n\n.. code-block:: python\n\n    # Minibatch Stochastic Gradient Descent\n\n    # assume loss is a symbolic description of the loss function given\n    # the symbolic variables params (shared variable), x_batch, y_batch;\n\n    # compute gradient of loss with respect to params\n    d_loss_wrt_params = T.grad(loss, params)\n\n    # compile the MSGD step into a theano function\n    updates = [(params, params - learning_rate * d_loss_wrt_params)]\n    MSGD = theano.function([x_batch,y_batch], loss, updates=updates)\n\n    for (x_batch, y_batch) in train_batches:\n        # here x_batch and y_batch are elements of train_batches and\n        # therefore numpy arrays; function MSGD also updates the params\n        print('Current loss is ', MSGD(x_batch, y_batch))\n        if stopping_condition_is_met:\n            return params\n\n\n.. index:: Regularization\n\nRegularization\n++++++++++++++\n\nThere is more to machine learning than optimization.  When we\ntrain our model from data we are trying to prepare it to do well on *new*\nexamples, not the ones it has already seen.  The training loop above for MSGD\ndoes not take this into account, and may overfit the training examples.\nA way to combat overfitting is through regularization.\nThere are several techniques for regularization; the ones we will explain\nhere are L1/L2 regularization and early-stopping.\n\n.. index:: L1 and L2 regularization\n\n.. _L1_L2_regularization :\n\nL1 and L2 regularization\n------------------------\n\nL1 and L2 regularization involve adding an extra term to the loss function,\nwhich penalizes certain parameter configurations. Formally, if our loss function is:\n\n.. math::\n\n    NLL(\\theta, \\mathcal{D}) = - \\sum_{i=0}^{|\\mathcal{D}|} \\log P(Y=y^{(i)} | x^{(i)}, \\theta)\n\nthen the regularized loss will be:\n\n.. math::\n\n\tE(\\theta, \\mathcal{D}) =  NLL(\\theta, \\mathcal{D}) + \\lambda R(\\theta)\\\\\n\nor, in our case\n\n.. math::\n\n\tE(\\theta, \\mathcal{D}) =  NLL(\\theta, \\mathcal{D}) + \\lambda||\\theta||_p^p\n\nwhere\n\n.. math::\n\t\n\t||\\theta||_p = \\left(\\sum_{j=0}^{|\\theta|}{|\\theta_j|^p}\\right)^{\\frac{1}{p}}\n\nwhich is the :math:`L_p` norm of :math:`\\theta`. :math:`\\lambda` is a hyper-parameter which\ncontrols the relative importance of the regularization parameter. Commonly used values for p\nare 1 and 2, hence the L1/L2 nomenclature. If p=2, then the regularizer is\nalso called \"weight decay\".\n\nIn principle, adding a regularization term to the loss will encourage smooth\nnetwork mappings in a neural network (by penalizing large values of the\nparameters, which decreases the amount of nonlinearity that the\nnetwork models). More intuitively, the two terms (NLL and :math:`R(\\theta)`)\ncorrespond to modelling the data well (NLL) and having \"simple\" or \"smooth\"\nsolutions (:math:`R(\\theta)`). Thus, minimizing the sum of both will, in\ntheory, correspond to finding the right trade-off between the fit to the\ntraining data and the \"generality\" of the solution that is found. To follow\nOccam's razor principle, this minimization should find us the simplest\nsolution (as measured by our simplicity criterion) that fits the training\ndata.\n\nNote that the fact that a solution is \"simple\" does not mean that it will\ngeneralize well. Empirically, it was found that performing such regularization\nin the context of neural networks helps with generalization, especially\non small datasets.\nThe code block below shows how to compute the loss in python when it\ncontains both a L1 regularization term weighted by :math:`\\lambda_1` and\nL2 regularization term weighted by :math:`\\lambda_2`\n\n.. code-block:: python\n\n  # symbolic Theano variable that represents the L1 regularization term\n  L1  = T.sum(abs(param))\n\n  # symbolic Theano variable that represents the squared L2 term\n  L2_sqr = T.sum(param ** 2)\n\n  # the loss\n  loss = NLL + lambda_1 * L1 + lambda_2 * L2\n\n\n\n.. index:: Early-Stopping\n\n.. _opt_early_stopping:\n\n\nEarly-Stopping\n--------------\n\nEarly-stopping combats overfitting by monitoring the model's performance on a\n*validation set*.  A validation set is a set of examples that we never use for\ngradient descent, but which is also not a part of the *test set*.  The\nvalidation examples are considered to be representative of future test examples.\nWe can use them during training because they are not part of the test set.\nIf the model's performance ceases to improve sufficiently on the\nvalidation set, or even degrades with further optimization, then the\nheuristic implemented here gives up on much further optimization.\n\n\nThe choice of when to stop is a\njudgement call and a few heuristics exist, but these tutorials will make use\nof a strategy based on a geometrically increasing amount of patience.\n\n.. code-block:: python\n\n    # early-stopping parameters\n    patience = 5000  # look as this many examples regardless\n    patience_increase = 2     # wait this much longer when a new best is\n                                  # found\n    improvement_threshold = 0.995  # a relative improvement of this much is\n                                   # considered significant\n    validation_frequency = min(n_train_batches, patience/2)\n                                  # go through this many\n                                  # minibatches before checking the network\n                                  # on the validation set; in this case we\n                                  # check every epoch\n\n    best_params = None\n    best_validation_loss = numpy.inf\n    test_score = 0.\n    start_time = time.clock()\n\n    done_looping = False\n    epoch = 0\n    while (epoch < n_epochs) and (not done_looping):\n        # Report \"1\" for first epoch, \"n_epochs\" for last epoch\n        epoch = epoch + 1\n        for minibatch_index in xrange(n_train_batches):\n\n            d_loss_wrt_params = ... # compute gradient\n            params -= learning_rate * d_loss_wrt_params # gradient descent\n\n            # iteration number. We want it to start at 0.\n            iter = (epoch - 1) * n_train_batches + minibatch_index\n            # note that if we do `iter % validation_frequency` it will be\n            # true for iter = 0 which we do not want. We want it true for\n            # iter = validation_frequency - 1.\n            if (iter + 1) % validation_frequency == 0:\n\n                this_validation_loss = ... # compute zero-one loss on validation set\n\n                if this_validation_loss < best_validation_loss:\n\n                    # improve patience if loss improvement is good enough\n                    if this_validation_loss < best_validation_loss * improvement_threshold:\n\n                        patience = max(patience, iter * patience_increase)\n                    best_params = copy.deepcopy(params)\n                    best_validation_loss = this_validation_loss\n\n            if patience <= iter:\n                done_looping = True\n                break\n\n    # POSTCONDITION:\n    # best_params refers to the best out-of-sample parameters observed during the optimization\n\nIf we run out of batches of training data before running out of patience, then\nwe just go back to the beginning of the training set and repeat.\n\n\n.. note::\n\n    The ``validation_frequency`` should always be smaller than the\n    ``patience``. The code should check at least two times how it\n    performs before running out of patience. This is the reason we used\n    the formulation ``validation_frequency = min( value, patience/2.)``\n\n.. note::\n\n    This algorithm could possibly be improved by using a test of statistical significance\n    rather than the simple comparison, when deciding whether to increase the\n    patience.\n\n\n\n.. index:: Testing\n\nTesting\n+++++++\n\nAfter the loop exits, the best_params variable refers to the best-performing\nmodel on the validation set.  If we repeat this procedure for another model\nclass, or even another random initialization, we should use the same\ntrain/valid/test split of the data, and get other best-performing\nmodels.  If we have to choose what the best model class or the best\ninitialization was, we compare the best_validation_loss for each model.  When\nwe have finally chosen the model we think is the best (on validation data), we\nreport that model's test set performance.  That is the performance we expect on\nunseen examples.\n\nRecap\n+++++\n\nThat's it for the optimization section.\nThe technique of early-stopping requires us to partition the set of examples into three sets\n(training :math:`\\mathcal{D}_{train}`,\nvalidation :math:`\\mathcal{D}_{valid}`,\ntest :math:`\\mathcal{D}_{test}`).\nThe training set is used for minibatch stochastic gradient descent on the\ndifferentiable approximation of the objective function.\nAs we perform this gradient descent, we periodically consult the validation set\nto see how our model is doing on the real objective function (or at least our\nempirical estimate of it).\nWhen we see a good model on the validation set, we save it.\nWhen it has been a long time since seeing a good model, we abandon our search\nand return the best parameters found, for evaluation on the test set.\n\n\n\n\nTheano/Python Tips\n===================\n\nLoading and Saving Models\n++++++++++++++++++++++++++\n\nWhen you're doing experiments, it can take hours (sometimes days!) for\ngradient-descent to find the best parameters.  You will want to save those\nweights once you find them.  You may also want to save your current-best\nestimates as the search progresses.\n\n**Pickle the numpy ndarrays from your shared variables**\n\nThe best way to save/archive your model's parameters is to use pickle or\ndeepcopy the ndarray objects.  So for example, if your parameters are in\nshared variables ``w, v, u``, then your save command should look something\nlike:\n\n.. code-block:: python\n\n    >>> import cPickle\n    >>> save_file = open('path', 'wb')  # this will overwrite current contents\n    >>> cPickle.dump(w.get_value(borrow=True), save_file, -1)  # the -1 is for HIGHEST_PROTOCOL\n    >>> cPickle.dump(v.get_value(borrow=True), save_file, -1)  # .. and it triggers much more efficient\n    >>> cPickle.dump(u.get_value(borrow=True), save_file, -1)  # .. storage than numpy's default\n    >>> save_file.close()\n\nThen later, you can load your data back like this:\n\n.. code-block:: python\n\n    >>> save_file = open('path')\n    >>> w.set_value(cPickle.load(save_file), borrow=True)\n    >>> v.set_value(cPickle.load(save_file), borrow=True)\n    >>> u.set_value(cPickle.load(save_file), borrow=True)\n\nThis technique is a bit verbose, but it is tried and true.  You will be able\nto load your data and render it in matplotlib without trouble, years after\nsaving it.\n\n**Do not pickle your training or test functions for long-term storage**\n\nTheano functions are compatible with Python's deepcopy and pickle mechanisms,\nbut you should not necessarily pickle a Theano function.  If you update your\nTheano folder and one of the internal changes, then you may not be able to\nun-pickle your model.  Theano is still in active development, and the internal\nAPIs are subject to change.  So to be on the safe side -- do not pickle your\nentire training or testing functions for long-term storage.  The pickle\nmechanism is aimed at for short-term storage, such as a temp file, or a copy to\nanother machine in a distributed job.\n\nRead more about `serialization in Theano`_, or Python's `pickling`_.\n\n.. _pickling: http://docs.python.org/library/pickle.html\n.. _serialization in Theano: http://deeplearning.net/software/theano/tutorial/loading_and_saving.html\n\nPlotting Intermediate Results\n++++++++++++++++++++++++++++++\n\nVisualizations can be very powerful tools for understanding what your model or\ntraining algorithm is doing.  You might be tempted to insert ``matplotlib``\nplotting commands, or ``PIL`` image-rendering commands into your model-training\nscript.  However, later you will observe something interesting in one of those\npre-rendered images and want to investigate something that isn't clear from\nthe pictures.  You'll wished you had saved the original model.\n\n**If you have enough disk space, your training script should save intermediate models and  a visualization\nscript should process those saved models.**\n\nYou already have a model-saving function right?  Just use it again to save\nthese intermediate models.\n\nLibraries you'll want to know about: Python Image Library (`PIL`_), `matplotlib`_.\n\n.. _PIL: http://www.pythonware.com/products/pil\n.. _matplotlib: http://matplotlib.sourceforge.net\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/hmc.txt",
    "content": ".. _HMC:\n\nHybrid Monte-Carlo Sampling\n===========================\n\n\n.. note::\n  This is an advanced tutorial, which shows how one can implemented Hybrid\n  Monte-Carlo (HMC) sampling using Theano. We assume the reader is already\n  familiar with Theano and energy-based models such as the RBM.\n\n.. note::\n    The code for this section is available for download `here <http://deeplearning.net/tutorial/code/hmc/hmc.py>`_.\n\n\nTheory\n++++++\n\nMaximum likelihood learning of energy-based models requires a robust algorithm\nto sample negative phase particles (see Eq.(4) of the :doc:`rbm` tutorial).\nWhen training RBMs with CD or PCD, this is typically done with block Gibbs\nsampling, where the conditional distributions :math:`p(h|v)` and\n:math:`p(v|h)` are used as the transition operators of the Markov chain.\n\nIn certain cases however, these conditional distributions might be difficult\nto sample from (i.e. requiring expensive matrix inversions, as in the case of\nthe \"mean-covariance RBM\"). Also, even if Gibbs sampling can be done\nefficiently, it nevertheless operates via a random walk which might not be\nstatistically efficient for some distributions. \nIn this context, and when sampling from continuous variables, Hybrid Monte\nCarlo (HMC) can prove to be a powerful tool [Duane87]_. It avoids random walk\nbehavior by simulating a physical system governed by Hamiltonian dynamics,\npotentially avoiding tricky conditional distributions in the process. \n\nIn HMC, model samples are obtained by simulating a physical system, where\nparticles move about a high-dimensional landscape, subject to potential and\nkinetic energies.  Adapting the notation from [Neal93]_, particles are\ncharacterized by a position vector or state :math:`s \\in \\mathcal{R}^D` and\nvelocity vector :math:`\\phi \\in \\mathcal{R}^D`. The combined state of a\nparticle is denoted as :math:`\\chi=(s,\\phi)`. The Hamiltonian is then defined\nas the sum of potential energy :math:`E(s)` (same energy function defined by\nenergy-based models) and kinetic energy :math:`K(\\phi)`, as follows:\n\n.. math::\n    \n    \\mathcal{H}(s,\\phi) = E(s) + K(\\phi) \n                              = E(s) + \\frac{1}{2} \\sum_i \\phi_i^2\n\nInstead of sampling :math:`p(s)` directly, HMC operates by sampling from the\ncanonical distribution \n:math:`p(s,\\phi) = \\frac{1}{Z} \\exp(-\\mathcal{H}(s,\\phi))=p(s)p(\\phi)`. \nBecause the two variables are independent, marginalizing over\n:math:`\\phi` is trivial and recovers the original distribution of\ninterest.\n\n**Hamiltonian Dynamics**\n\nState :math:`s` and velocity :math:`\\phi` are modified such that\n:math:`\\mathcal{H}(s,\\phi)` remains constant throughout the simulation.\nThe differential equations are given by:\n\n.. math::\n    :label: ds_dt\n\n    \\frac{ds_i}{dt} &= \\frac{\\partial \\mathcal{H}}{\\partial \\phi_i} = \\phi_i \\\\\n    \\frac{d\\phi_i}{dt} &= - \\frac{\\partial \\mathcal{H}}{\\partial s_i} \n                     = - \\frac{\\partial E}{\\partial s_i}\n\nAs shown in [Neal93]_, the above transformation preserves volume and is\nreversible. The above dynamics can thus be used as transition operators of a\nMarkov chain and will leave :math:`p(s,\\phi)` invariant. That chain by itself\nis not ergodic however, since simulating the dynamics maintains a fixed\nHamiltonian :math:`\\mathcal{H}(s,\\phi)`.\nHMC thus alternates hamiltonian dynamic steps, with Gibbs sampling of the\nvelocity. Because :math:`p(s)` and :math:`p(\\phi)` are independent, sampling\n:math:`\\phi_{new} \\sim p(\\phi|s)` is trivial since :math:`p(\\phi|s)=p(\\phi)`,\nwhere :math:`p(\\phi)` is often taken to be the uni-variate Gaussian.\n\n\n**The Leap-Frog Algorithm**\n\nIn practice, we cannot simulate Hamiltonian dynamics exactly because of the\nproblem of time discretization. There are several ways one can do this. To\nmaintain invariance of the Markov chain however, care must be taken to\npreserve the properties of volume conservation and time reversibility.  The\n**leap-frog algorithm** maintains these properties and operates in 3 steps:\n\n.. math::\n  :label: leap-frog\n\n  \\phi_i(t + \\epsilon/2) &= \\phi_i(t) - \\frac{\\epsilon}{2} \\frac{\\partial{}}{\\partial s_i} E(s(t)) \\\\\n  s_i(t + \\epsilon) &= s_i(t) + \\epsilon \\phi_i(t + \\epsilon/2) \\\\\n  \\phi_i(t + \\epsilon) &= \\phi_i(t + \\epsilon/2) - \\frac{\\epsilon}{2} \\frac{\\partial{}}{\\partial s_i} E(s(t + \\epsilon)) \\\\\n\nWe thus perform a half-step update of the velocity at time\n:math:`t+\\epsilon/2`, which is then used to compute :math:`s(t + \\epsilon)`\nand :math:`\\phi(t + \\epsilon)`.\n\n**Accept / Reject**\n\nIn practice, using finite stepsizes :math:`\\epsilon` will not preserve\n:math:`\\mathcal{H}(s,\\phi)` exactly and will introduce bias in the simulation.\nAlso, rounding errors due to the use of floating point numbers means that the\nabove transformation will not be perfectly reversible.\n\nHMC cancels these effects **exactly** by adding a Metropolis accept/reject\nstage, after :math:`n` leapfrog steps. The new state :math:`\\chi' = (s',\\phi')` is\naccepted with probability :math:`p_{acc}(\\chi,\\chi')`, defined as:\n\n.. math::\n\n    p_{acc}(\\chi,\\chi') = min \\left( 1, \\frac{\\exp(-\\mathcal{H}(s',\\phi')}{\\exp(-\\mathcal{H}(s,\\phi)} \\right)\n\n\n**HMC Algorithm**\n\nIn this tutorial, we obtain a new HMC sample as follows:\n\n1. sample a new velocity from a univariate Gaussian distribution\n2. perform :math:`n` leapfrog steps to obtain the new state :math:`\\chi'`\n3. perform accept/reject move of :math:`\\chi'`\n\n\nImplementing HMC Using Theano\n+++++++++++++++++++++++++++++\n\nIn Theano, update dictionaries and shared variables provide a natural way to\nimplement a sampling algorithm. The current state of the sampler can be\nrepresented as a Theano shared variable, with HMC updates being implemented by\nthe updates list of a Theano function.\n\nWe breakdown the HMC algorithm into the following sub-components:\n\n* `simulate\\_dynamics`: a symbolic Python function which, given an initial position and velocity, will perform `n\\_steps` leapfrog updates and return the symbolic variables for the proposed state :math:`\\chi'`.\n* `hmc\\_move`: a symbolic Python function which given a starting position,\n  generates :math:`\\chi` by randomly sampling a velocity vector. It then\n  calls `simulate\\_dynamics` and determines whether the transition :math:`\\chi\n  \\rightarrow \\chi'` is to be accepted.\n* `hmc\\_updates`: a Python function which, given the symbolic outputs of `hmc\\_move`, \n  generates the list of updates for a single iteration of HMC.\n* `HMC\\_sampler`: a Python helper class which wraps everything together.\n\n  \n**simulate_dynamics**\n\nTo perform :math:`n` leapfrog steps, we first need to define a function over\nwhich `Scan` can iterate over. Instead of implementing Eq. :eq:`leap-frog`\nverbatim, notice that we can obtain :math:`s(t + n \\epsilon)` and\n:math:`\\phi(t + n \\epsilon)` by performing an initial half-step update for\n:math:`\\phi`, followed by :math:`n` full-step updates for :math:`s,\\phi` and\none last half-step update for :math:`\\phi`. In loop form, this gives:\n\n.. math::\n  :label: leap-frog2\n\n  & \\phi_i(t + \\epsilon/2) = \\phi_i(t) - \n     \\frac{\\epsilon}{2} \\frac{\\partial{}}{\\partial s_i} E(s(t)) \\\\\n  & s_i(t + \\epsilon) = s_i(t) + \\epsilon \\phi_i(t + \\epsilon/2) \\\\\n  & \\text{For } m \\in [2,n]\\text{, perform full updates: } \\\\\n  & \\qquad\n    \\phi_i(t + (m - 1/2)\\epsilon) = \\phi_i(t + (m-3/2)\\epsilon) - \n        \\epsilon \\frac{\\partial{}}{\\partial s_i} E(s(t + (m-1)\\epsilon)) \\\\\n  & \\qquad\n    s_i(t + m\\epsilon) = s_i(t) + \\epsilon \\phi_i(t + (m-1/2)\\epsilon) \\\\\n  & \\phi_i(t + n\\epsilon) = \\phi_i(t + (n-1/2)\\epsilon) - \n       \\frac{\\epsilon}{2} \\frac{\\partial{}}{\\partial s_i} E(s(t + n\\epsilon)) \\\\\n\n\nThe inner-loop defined above is implemented by the following `leapfrog`\nfunction, with `pos`, `vel` and `step` replacing :math:`s,\\phi` and :math:`\\epsilon`\nrespectively.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: simulate_dynamics.leapfrog\n\nThe `simulate_dynamics` function performs the full algorithm of Eqs.\n:eq:`leap-frog2`. We start with the initial half-step update of :math:`\\phi`\nand full-step of :math:`s`, and then scan over the `leapfrog` method\n`n\\_steps-1` times.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: simulate_dynamics\n\nA final half-step is performed to compute :math:`\\phi(t+n\\epsilon)`, and the\nfinal proposed state :math:`\\chi'` is returned.\n\n\n**hmc_move**\n\nThe `hmc\\_move` function implements the remaining steps (steps 1 and 3) of an\nHMC move proposal (while wrapping the `simulate\\_dynamics` function). Given a\nmatrix of initial states :math:`s \\in \\mathcal{R}^{N \\times D}` (`positions`) and\nenergy function :math:`E(s)` (`energy\\_fn`), it defines the symbolic graph for\ncomputing `n\\_steps` of HMC, using a given `stepsize`. The function prototype\nis as follows:\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nWe start by sampling random velocities, using the provided shared RandomStream\nobject. Velocities are sampled independently for each dimension and for each\nparticle under simulation, yielding a :math:`N \\times D` matrix.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nSince we now have an initial position and velocity, we can now call the\n`simulate\\_dynamics` to obtain the proposal for the new state :math:`\\chi'`.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\nWe then accept/reject the proposed state based on the Metropolis algorithm.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-4\n  :end-before: end-snippet-4\n\nwhere `metropolis\\_hastings\\_accept` and `hamiltonian` are helper functions,\ndefined as follows.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: metropolis_hastings_accept\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: hamiltonian\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: kinetic_energy\n\n`hmc\\_move` finally returns the tuple `(accept, final\\_pos)`. `accept` is a\nsymbolic boolean variable indicating whether or not the new state `final_pos`\nshould be used or not.\n\n\n**hmc_updates**\n\n.. _switch: http://deeplearning.net/software/theano/library/tensor/basic.html#tensor.switch\n.. _clip: http://deeplearning.net/software/theano/library/tensor/basic.html#tensor.clip\n\n.. _dimshuffle: http://deeplearning.net/software/theano/library/tensor/basic.html#tensor._tensor_py_operators.dimshuffle\n\nThe purpose of `hmc\\_updates` is to generate the list of updates to\nperform, whenever our HMC sampling function is called. `hmc\\_updates` thus\nreceives as parameters, a series of shared variables to update (`positions`, `stepsize` and\n`avg\\_acceptance\\_rate`), and the parameters required to compute their new\nstate.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-5\n  :end-before: end-snippet-5\n\nUsing the above code, the dictionary `{positions: new\\_positions}` can be used\nto update the state of the sampler with either (1) the new state `final\\_pos`\nif `accept` is True, or (2) the old state if `accept` is False.  This\nconditional assignment is performed by the `switch`_ op.  \n\n`switch` expects as its first argument, a boolean mask with the same\nbroadcastable dimensions as the second and third argument. Since `accept` is\nscalar-valued, we must first use `dimshuffle`_ to transform it to a tensor with\n`final\\_pos.ndim` broadcastable dimensions (`accept\\_matrix`).\n\n`hmc\\_updates` additionally implements an adaptive version of HMC, as\nimplemented in the accompanying code to [Ranzato10]_. We start by tracking the\naverage acceptance rate of the HMC move proposals (across many simulations),\nusing an exponential moving average with time constant\n`1-avg\\_acceptance\\_slowness`.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-6\n  :end-before: end-snippet-6\n\nIf the average acceptance rate is larger than the `target\\_acceptance\\_rate`, we\nincrease the `stepsize` by a factor of `stepsize\\_inc` in order to increase the\nmixing rate of our chain. If the average acceptance rate is too low however,\n`stepsize` is decreased by a factor of `stepsize\\_dec`, yielding a more\nconservative mixing rate. The `clip`_ op allows us to maintain the `stepsize`\nin the range [`stepsize\\_min`, `stepsize\\_max`].\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-7\n  :end-before: end-snippet-7\n\nThe final updates list is then returned.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :start-after: start-snippet-8\n  :end-before: end-snippet-8\n\n**HMC_sampler**\n\nWe finally tie everything together using the `HMC\\_Sampler` class. Its main\nelements are:\n\n* `new\\_from\\_shared\\_positions`: a constructor method which allocates various\n  shared variables and strings together the calls to `hmc\\_move` and\n  `hmc\\_updates`. It also builds the theano function `simulate`, whose sole\n  purpose is to execute the updates generated by `hmc\\_updates`.\n* `draw`: a convenience method which calls the Theano function `simulate`\n  and returns a copy of the contents of the shared variable `self.positions`.\n\n.. literalinclude:: ../code/hmc/hmc.py\n  :pyobject: HMC_sampler\n\nTesting our Sampler\n+++++++++++++++++++\n\nWe test our implementation of HMC by sampling from a multi-variate Gaussian\ndistribution. We start by generating a random mean vector `mu` and covariance\nmatrix `cov`, which allows us to define the energy function of the\ncorresponding Gaussian distribution: `gaussian\\_energy`.\nWe then initialize the state of the sampler by allocating a `position` shared\nvariable. It is passed to the constructor of `HMC\\_sampler` along with our\ntarget energy function.\n\nFollowing a burn-in period, we then generate a large number of samples and\ncompare the empirical mean and covariance matrix to their true values.\n\n.. literalinclude:: ../code/hmc/test_hmc.py\n  :pyobject: sampler_on_nd_gaussian\n\n.. literalinclude:: ../code/hmc/test_hmc.py\n  :pyobject: test_hmc\n\nThe above code can be run using the command: \"nosetests -s code/hmc/test\\_hmc.py\". The output is as follows:\n\n.. code-block:: bash\n\n    [desjagui@atchoum hmc]$ python test_hmc.py\n\n    ****** TARGET VALUES ******\n    target mean: [ 6.96469186  2.86139335  2.26851454  5.51314769  7.1946897 ]\n    target cov:\n    [[ 1.          0.66197111  0.71141257  0.55766643  0.35753822]\n     [ 0.66197111  1.          0.31053199  0.45455485  0.37991646]\n     [ 0.71141257  0.31053199  1.          0.62800335  0.38004541]\n     [ 0.55766643  0.45455485  0.62800335  1.          0.50807871]\n     [ 0.35753822  0.37991646  0.38004541  0.50807871  1.        ]]\n\n    ****** EMPIRICAL MEAN/COV USING HMC ******\n    empirical mean:  [ 6.94155164  2.81526039  2.26301715  5.46536853  7.19414496]\n    empirical_cov:\n    [[ 1.05152997  0.68393537  0.76038645  0.59930252  0.37478746]\n     [ 0.68393537  0.97708159  0.37351422  0.48362404  0.3839558 ]\n     [ 0.76038645  0.37351422  1.03797111  0.67342957  0.41529132]\n     [ 0.59930252  0.48362404  0.67342957  1.02865056  0.53613649]\n     [ 0.37478746  0.3839558   0.41529132  0.53613649  0.98721449]]\n\n    ****** HMC INTERNALS ******\n    final stepsize 0.460446628091\n    final acceptance_rate 0.922502043428\n\nAs can be seen above, the samples generated by our HMC sampler yield an\nempirical mean and covariance matrix, which are very close to the true\nunderlying parameters. The adaptive algorithm also seemed to work well as the\nfinal acceptance rate is close to our target of `0.9`.\n\nReferences\n++++++++++\n\n.. [Alder59] Alder, B. J. and Wainwright, T. E. (1959) \"Studies in molecular dynamics. 1. General method\", Journal of Chemical Physics, vol. 31, pp. 459-466.\n\n.. [Andersen80] Andersen, H.C. (1980) \"Molecular dynamics simulations at constant pressure and/or temperature\", Journal of Chemical Physics, vol. 72, pp. 2384-2393.\n\n.. [Duane87] Duane, S., Kennedy, A. D., Pendleton, B. J., and Roweth, D. (1987) \"Hybrid Monte Carlo\", Physics Letters, vol. 195, pp. 216-222.\n\n.. [Neal93] Neal, R. M. (1993) \"Probabilistic Inference Using Markov Chain Monte Carlo Methods\", Technical Report CRG-TR-93-1, Dept. of Computer Science, University of Toronto, 144 pages\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/index.txt",
    "content": "=======================\nDeep Learning Tutorials\n=======================\n\nDeep Learning is a new area of Machine Learning research, which\nhas been introduced with the objective of moving Machine Learning\ncloser to one of its original goals: Artificial Intelligence.\nSee these course notes for a `brief introduction to Machine Learning for AI <http://www.iro.umontreal.ca/~pift6266/H10/notes/mlintro.html>`_\nand an `introduction to Deep Learning algorithms <http://www.iro.umontreal.ca/~pift6266/H10/notes/deepintro.html>`_.\n\nDeep Learning is about learning multiple levels of representation\nand abstraction that help to\nmake sense of data such as images, sound, and text. \nFor more about deep learning algorithms, see for example:\n\n - The monograph or review paper `Learning Deep Architectures for AI <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/239>`_ (Foundations & Trends in Machine Learning, 2009).\n - The ICML 2009 Workshop on Learning Feature Hierarchies `webpage <http://www.cs.toronto.edu/~rsalakhu/deeplearning/index.html>`_ has a `list of references <http://www.cs.toronto.edu/~rsalakhu/deeplearning/references.html>`_.\n - The LISA `public wiki <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/WebHome>`_ has a `reading list <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/ReadingOnDeepNetworks>`_ and a `bibliography <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/DeepNetworksBibliography>`_.\n - Geoff Hinton has `readings <http://www.cs.toronto.edu/~hinton/deeprefs.html>`_ from 2009's `NIPS tutorial <http://videolectures.net/jul09_hinton_deeplearn/>`_.\n\nThe tutorials presented here will introduce you to some of the most important deep learning\nalgorithms and will also show you how to run them using Theano_. Theano is a python library that makes writing deep learning models easy, and gives the option of\ntraining them on a GPU.\n\nThe algorithm tutorials have some prerequisites.  You should know some python,\nand be familiar with numpy. Since this tutorial is about using Theano, you\nshould read over the `Theano basic tutorial`_ first.  Once you've done that,\nread through our :ref:`gettingstarted` chapter -- it introduces the notation, and [downloadable] datasets used in the algorithm tutorials, and the way we do optimization by stochastic gradient descent.  \n\nThe purely supervised learning algorithms are meant to be read in order:\n\n  #. :ref:`Logistic Regression <logreg>` - using Theano for something simple\n  #. :ref:`Multilayer perceptron <mlp>` - introduction to layers\n  #. :ref:`Deep Convolutional Network <lenet>` - a simplified version of LeNet5\n\nThe unsupervised and semi-supervised learning algorithms can be read in any\norder (the auto-encoders can be read independently of the RBM/DBN thread):\n\n  * :ref:`Auto Encoders, Denoising Autoencoders <daa>` - description of autoencoders\n  * :ref:`Stacked Denoising Auto-Encoders <SdA>` - easy steps into unsupervised pre-training for deep nets\n  * :ref:`Restricted Boltzmann Machines <rbm>` - single layer generative RBM model\n  * :ref:`Deep Belief Networks <DBN>` - unsupervised generative pre-training of stacked RBMs followed by supervised fine-tuning\n\nBuilding towards including the mcRBM model, we have a new tutorial on sampling\nfrom energy models:\n\n  * :ref:`HMC Sampling <HMC>` - hybrid (aka Hamiltonian) Monte-Carlo sampling with scan()\n\nBuilding towards including the Contractive auto-encoders tutorial, we have the code for now:\n  * `Contractive auto-encoders`_ code - There is some basic doc in the code.\n\nRecurrent neural networks with word embeddings and context window:\n  * :ref:`Semantic Parsing of Speech using Recurrent Net <rnnslu>`\n\nLSTM network for sentiment analysis:\n  * :ref:`LSTM network <lstm>`\n\nEnergy-based recurrent neural network (RNN-RBM):\n  * :ref:`Modeling and generating sequences of polyphonic music <rnnrbm>`\n\n.. _Theano: http://deeplearning.net/software/theano\n\n.. _Theano basic tutorial: http://deeplearning.net/software/theano/tutorial\n\n.. _Contractive auto-encoders: https://github.com/lisa-lab/DeepLearningTutorials/blob/master/code/cA.py\n"
  },
  {
    "path": "DeepLearningTutorials/doc/lenet.txt",
    "content": ".. _lenet:\n\nConvolutional Neural Networks (LeNet)\n=====================================\n\n.. note::\n    This section assumes the reader has already read through :doc:`logreg` and\n    :doc:`mlp`. Additionally, it uses the following new Theano functions and concepts:\n    `T.tanh`_, `shared variables`_, `basic arithmetic ops`_, `T.grad`_,\n    `floatX`_, `downsample`_ , `conv2d`_, `dimshuffle`_. If you intend to run the\n    code on GPU also read `GPU`_.\n\n    To run this example on a GPU, you need a good GPU. It needs\n    at least 1GB of GPU RAM.  More may be required if your monitor is\n    connected to the GPU.\n    \n    When the GPU is connected to the monitor, there is a limit\n    of a few seconds for each GPU function call. This is needed as\n    current GPUs can't be used for the monitor while doing\n    computation. Without this limit, the screen would freeze\n    for too long and make it look as if the computer froze. \n    This example hits this limit with medium-quality GPUs. When the\n    GPU isn't connected to a monitor, there is no time limit. You can\n    lower the batch size to fix the time out problem.\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html\n\n.. _downsample: http://deeplearning.net/software/theano/library/tensor/signal/downsample.html\n\n.. _conv2d: http://deeplearning.net/software/theano/library/tensor/signal/conv.html#module-conv\n\n.. _dimshuffle: http://deeplearning.net/software/theano/library/tensor/basic.html#tensor._tensor_py_operators.dimshuffle\n\n.. note::\n    The code for this section is available for download `here`_ and the `3wolfmoon image`_\n\n.. _here: http://deeplearning.net/tutorial/code/convolutional_mlp.py\n\n.. _3wolfmoon image: https://raw.githubusercontent.com/lisa-lab/DeepLearningTutorials/master/doc/images/3wolfmoon.jpg\n\n\nMotivation\n++++++++++\n\nConvolutional Neural Networks (CNN) are biologically-inspired variants of MLPs.\nFrom Hubel and Wiesel's early work on the cat's visual cortex [Hubel68]_, we\nknow the visual cortex contains a complex arrangement of cells. These cells are\nsensitive to small sub-regions of the visual field, called a *receptive\nfield*. The sub-regions are tiled to cover the entire visual field. These\ncells act as local filters over the input space and are well-suited to exploit\nthe strong spatially local correlation present in natural images.\n\nAdditionally, two basic cell types have been identified: Simple cells respond\nmaximally to specific edge-like patterns within their receptive field. Complex\ncells have larger receptive fields and are locally invariant to the exact\nposition of the pattern.\n\nThe animal visual cortex being the most powerful visual processing system in\nexistence, it seems natural to emulate its behavior. Hence, many\nneurally-inspired models can be found in the literature. To name a few: the\nNeoCognitron [Fukushima]_, HMAX [Serre07]_ and LeNet-5 [LeCun98]_, which will\nbe the focus of this tutorial.\n\n\nSparse Connectivity\n+++++++++++++++++++\n\nCNNs exploit spatially-local correlation by enforcing a local connectivity\npattern between neurons of adjacent layers. In other words, the inputs of\nhidden units in layer **m** are from a subset of units in layer **m-1**, units\nthat have spatially contiguous receptive fields. We can illustrate this\ngraphically as follows:\n\n.. figure:: images/sparse_1D_nn.png\n    :align: center\n\nImagine that layer **m-1** is the input retina. In the above figure, units in\nlayer **m** have receptive fields of width 3 in the input retina and are thus\nonly connected to 3 adjacent neurons in the retina layer. Units in layer\n**m+1** have a similar connectivity with the layer below. We say that their\nreceptive field with respect to the layer below is also 3, but their receptive\nfield with respect to the input is larger (5). Each unit is unresponsive to\nvariations outside of its receptive field with respect to the retina. The\narchitecture thus ensures that the learnt \"filters\" produce the strongest\nresponse to a spatially local input pattern.\n\nHowever, as shown above, stacking many such layers leads to (non-linear)\n\"filters\" that become increasingly \"global\" (i.e. responsive to a larger region\nof pixel space). For example, the unit in hidden layer **m+1** can encode a\nnon-linear feature of width 5 (in terms of pixel space).\n\n\nShared Weights\n++++++++++++++\n\nIn addition, in CNNs, each filter :math:`h_i` is replicated across the entire\nvisual field. These replicated units share the same parameterization (weight\nvector and bias) and form a *feature map*.\n\n.. figure:: images/conv_1D_nn.png\n    :align: center\n\nIn the above figure, we show 3 hidden units belonging to the same feature map.\nWeights of the same color are shared---constrained to be identical. Gradient\ndescent can still be used to learn such shared parameters, with only a small\nchange to the original algorithm. The gradient of a shared weight is simply the\nsum of the gradients of the parameters being shared.\n\nReplicating units in this way allows for features to be detected *regardless\nof their position in the visual field.* Additionally, weight sharing increases\nlearning efficiency by greatly reducing the number of free parameters being\nlearnt. The constraints on the model enable CNNs to achieve better\ngeneralization on vision problems.\n\n\nDetails and Notation\n++++++++++++++++++++\n\nA feature map is obtained by repeated application of a function across\nsub-regions of the entire image, in other words, by *convolution* of the\ninput image with a linear filter, adding a bias term and then applying a\nnon-linear function. If we denote the k-th feature map at a given layer as\n:math:`h^k`, whose filters are determined by the weights :math:`W^k` and bias\n:math:`b_k`, then the feature map :math:`h^k` is obtained as follows (for\n:math:`tanh` non-linearities):\n\n.. math::\n    h^k_{ij} = \\tanh ( (W^k * x)_{ij} + b_k ).\n\n.. Note::\n    Recall the following definition of convolution for a 1D signal.\n    :math:`o[n] = f[n]*g[n] = \\sum_{u=-\\infty}^{\\infty} f[u] g[n-u] = \\sum_{u=-\\infty}^{\\infty} f[n-u] g[u]`.\n\n    This can be extended to 2D as follows:\n    :math:`o[m,n] = f[m,n]*g[m,n] = \\sum_{u=-\\infty}^{\\infty} \\sum_{v=-\\infty}^{\\infty} f[u,v] g[m-u,n-v]`.\n\nTo form a richer representation of the data, each hidden layer is composed of\n*multiple* feature maps, :math:`\\{h^{(k)}, k=0..K\\}`. The weights :math:`W` of\na hidden layer can be represented in a 4D tensor containing elements for every\ncombination of destination feature map, source feature map, source vertical\nposition, and source horizontal position. The biases :math:`b` can be\nrepresented as a vector containing one element for every destination feature\nmap. We illustrate this graphically as follows:\n\n.. figure:: images/cnn_explained.png\n    :align: center\n\n    **Figure 1**: example of a convolutional layer\n\nThe figure shows two layers of a CNN. **Layer m-1** contains four feature maps.\n**Hidden layer m** contains two feature maps (:math:`h^0` and :math:`h^1`).\nPixels (neuron outputs) in :math:`h^0` and :math:`h^1` (outlined as blue and\nred squares) are computed from pixels of layer (m-1) which fall within their\n2x2 receptive field in the layer below (shown as colored rectangles). Notice\nhow the receptive field spans all four input feature maps. The weights\n:math:`W^0` and :math:`W^1` of :math:`h^0` and :math:`h^1` are thus 3D weight\ntensors. The leading dimension indexes the input feature maps, while the other\ntwo refer to the pixel coordinates.\n\nPutting it all together, :math:`W^{kl}_{ij}` denotes the weight connecting\neach pixel of the k-th feature map at layer m, with the pixel at coordinates\n(i,j) of the l-th feature map of layer (m-1).\n\n\nThe Convolution Operator\n++++++++++++++++++++++++\n\nConvOp is the main workhorse for implementing a convolutional layer in Theano.\nConvOp is used by ``theano.tensor.signal.conv2d``, which takes two symbolic inputs:\n\n\n* a 4D tensor corresponding to a mini-batch of input images. The shape of the\n  tensor is as follows: [mini-batch size, number of input feature maps, image\n  height, image width].\n\n* a 4D tensor corresponding to the weight matrix :math:`W`. The shape of the\n  tensor is: [number of feature maps at layer m, number of feature maps at\n  layer m-1, filter height, filter width]\n\n\nBelow is the Theano code for implementing a convolutional layer similar to the\none of Figure 1. The input consists of 3 features maps (an RGB color image) of size\n120x160. We use two convolutional filters with 9x9 receptive fields.\n\n.. code-block:: python\n\n        import theano\n        from theano import tensor as T\n        from theano.tensor.nnet import conv\n\n        import numpy\n\n        rng = numpy.random.RandomState(23455)\n\n        # instantiate 4D tensor for input\n        input = T.tensor4(name='input')\n\n        # initialize shared variable for weights.\n        w_shp = (2, 3, 9, 9)\n        w_bound = numpy.sqrt(3 * 9 * 9)\n        W = theano.shared( numpy.asarray(\n                    rng.uniform(\n                        low=-1.0 / w_bound,\n                        high=1.0 / w_bound,\n                        size=w_shp),\n                    dtype=input.dtype), name ='W')\n\n        # initialize shared variable for bias (1D tensor) with random values\n        # IMPORTANT: biases are usually initialized to zero. However in this\n        # particular application, we simply apply the convolutional layer to\n        # an image without learning the parameters. We therefore initialize\n        # them to random values to \"simulate\" learning.\n        b_shp = (2,)\n        b = theano.shared(numpy.asarray(\n                    rng.uniform(low=-.5, high=.5, size=b_shp),\n                    dtype=input.dtype), name ='b')\n\n        # build symbolic expression that computes the convolution of input with filters in w\n        conv_out = conv.conv2d(input, W)\n\n        # build symbolic expression to add bias and apply activation function, i.e. produce neural net layer output\n        # A few words on ``dimshuffle`` :\n        #   ``dimshuffle`` is a powerful tool in reshaping a tensor;\n        #   what it allows you to do is to shuffle dimension around\n        #   but also to insert new ones along which the tensor will be\n        #   broadcastable;\n        #   dimshuffle('x', 2, 'x', 0, 1)\n        #   This will work on 3d tensors with no broadcastable\n        #   dimensions. The first dimension will be broadcastable,\n        #   then we will have the third dimension of the input tensor as\n        #   the second of the resulting tensor, etc. If the tensor has\n        #   shape (20, 30, 40), the resulting tensor will have dimensions\n        #   (1, 40, 1, 20, 30). (AxBxC tensor is mapped to 1xCx1xAxB tensor)\n        #   More examples:\n        #    dimshuffle('x') -> make a 0d (scalar) into a 1d vector\n        #    dimshuffle(0, 1) -> identity\n        #    dimshuffle(1, 0) -> inverts the first and second dimensions\n        #    dimshuffle('x', 0) -> make a row out of a 1d vector (N to 1xN)\n        #    dimshuffle(0, 'x') -> make a column out of a 1d vector (N to Nx1)\n        #    dimshuffle(2, 0, 1) -> AxBxC to CxAxB\n        #    dimshuffle(0, 'x', 1) -> AxB to Ax1xB\n        #    dimshuffle(1, 'x', 0) -> AxB to Bx1xA\n        output = T.nnet.sigmoid(conv_out + b.dimshuffle('x', 0, 'x', 'x'))\n\n        # create theano function to compute filtered images\n        f = theano.function([input], output)\n\n\nLet's have a little bit of fun with this...\n\n.. code-block:: python\n\n        import numpy\n        import pylab\n        from PIL import Image\n\n        # open random image of dimensions 639x516\n        img = Image.open(open('doc/images/3wolfmoon.jpg'))\n        # dimensions are (height, width, channel)\n        img = numpy.asarray(img, dtype='float64') / 256.\n\n        # put image in 4D tensor of shape (1, 3, height, width)\n        img_ = img.transpose(2, 0, 1).reshape(1, 3, 639, 516)\n        filtered_img = f(img_)\n\n        # plot original image and first and second components of output\n        pylab.subplot(1, 3, 1); pylab.axis('off'); pylab.imshow(img)\n        pylab.gray();\n        # recall that the convOp output (filtered image) is actually a \"minibatch\",\n        # of size 1 here, so we take index 0 in the first dimension:\n        pylab.subplot(1, 3, 2); pylab.axis('off'); pylab.imshow(filtered_img[0, 0, :, :])\n        pylab.subplot(1, 3, 3); pylab.axis('off'); pylab.imshow(filtered_img[0, 1, :, :])\n        pylab.show()\n\n\nThis should generate the following output.\n\n.. image:: images/3wolfmoon_output.png\n    :align: center\n\nNotice that a randomly initialized filter acts very much like an edge detector!\n\nNote that we use the same weight initialization formula as with the MLP.\nWeights are sampled randomly from a uniform distribution in the range\n[-1/fan-in, 1/fan-in], where fan-in is the number of inputs to a hidden unit.\nFor MLPs, this was the number of units in the layer below. For CNNs however, we\nhave to take into account the number of input feature maps and the size of the\nreceptive fields.\n\n\nMaxPooling\n++++++++++\n\nAnother important concept of CNNs is *max-pooling,* which is a form of\nnon-linear down-sampling. Max-pooling partitions the input image into\na set of non-overlapping rectangles and, for each such sub-region, outputs the\nmaximum value.\n\nMax-pooling is useful in vision for two reasons: \n  #. By eliminating non-maximal values, it reduces computation for upper layers.\n\n  #. It provides a form of translation invariance. Imagine\n     cascading a max-pooling layer with a convolutional layer. There are 8\n     directions in which one can translate the input image by a single pixel.\n     If max-pooling is done over a 2x2 region, 3 out of these 8 possible\n     configurations will produce exactly the same output at the convolutional\n     layer. For max-pooling over a 3x3 window, this jumps to 5/8.\n\n     Since it provides additional robustness to position, max-pooling is a\n     \"smart\" way of reducing the dimensionality of intermediate representations.\n\nMax-pooling is done in Theano by way of\n``theano.tensor.signal.downsample.max_pool_2d``. This function takes as input\nan N dimensional tensor (where N >= 2) and a downscaling factor and performs\nmax-pooling over the 2 trailing dimensions of the tensor.\n\nAn example is worth a thousand words:\n\n.. code-block:: python\n\n    from theano.tensor.signal import downsample\n\n    input = T.dtensor4('input')\n    maxpool_shape = (2, 2)\n    pool_out = downsample.max_pool_2d(input, maxpool_shape, ignore_border=True)\n    f = theano.function([input],pool_out)\n\n    invals = numpy.random.RandomState(1).rand(3, 2, 5, 5)\n    print 'With ignore_border set to True:'\n    print 'invals[0, 0, :, :] =\\n', invals[0, 0, :, :]\n    print 'output[0, 0, :, :] =\\n', f(invals)[0, 0, :, :]\n\n    pool_out = downsample.max_pool_2d(input, maxpool_shape, ignore_border=False)\n    f = theano.function([input],pool_out)\n    print 'With ignore_border set to False:'\n    print 'invals[1, 0, :, :] =\\n ', invals[1, 0, :, :]\n    print 'output[1, 0, :, :] =\\n ', f(invals)[1, 0, :, :]\n\nThis should generate the following output:\n\n.. code-block:: bash\n\n    With ignore_border set to True:\n        invals[0, 0, :, :] =\n        [[  4.17022005e-01   7.20324493e-01   1.14374817e-04   3.02332573e-01 1.46755891e-01]\n         [  9.23385948e-02   1.86260211e-01   3.45560727e-01   3.96767474e-01 5.38816734e-01]\n         [  4.19194514e-01   6.85219500e-01   2.04452250e-01   8.78117436e-01 2.73875932e-02]\n         [  6.70467510e-01   4.17304802e-01   5.58689828e-01   1.40386939e-01 1.98101489e-01]\n         [  8.00744569e-01   9.68261576e-01   3.13424178e-01   6.92322616e-01 8.76389152e-01]]\n        output[0, 0, :, :] =\n        [[ 0.72032449  0.39676747]\n         [ 0.6852195   0.87811744]]\n\n    With ignore_border set to False:\n        invals[1, 0, :, :] =\n        [[ 0.01936696  0.67883553  0.21162812  0.26554666  0.49157316]\n         [ 0.05336255  0.57411761  0.14672857  0.58930554  0.69975836]\n         [ 0.10233443  0.41405599  0.69440016  0.41417927  0.04995346]\n         [ 0.53589641  0.66379465  0.51488911  0.94459476  0.58655504]\n         [ 0.90340192  0.1374747   0.13927635  0.80739129  0.39767684]]\n        output[1, 0, :, :] =\n        [[ 0.67883553  0.58930554  0.69975836]\n         [ 0.66379465  0.94459476  0.58655504]\n         [ 0.90340192  0.80739129  0.39767684]]\n\nNote that compared to most Theano code, the ``max_pool_2d`` operation is a\nlittle *special*. It requires the downscaling factor ``ds`` (tuple of length 2\ncontaining downscaling factors for image width and height) to be known at graph\nbuild time. This may change in the near future.\n\n\nThe Full Model: LeNet\n+++++++++++++++++++++\n\nSparse, convolutional layers and max-pooling are at the heart of the LeNet\nfamily of models. While the exact details of the model will vary greatly,\nthe figure below shows a graphical depiction of a LeNet model.\n\n.. image:: images/mylenet.png\n    :align: center\n\nThe lower-layers are composed to alternating convolution and max-pooling\nlayers. The upper-layers however are fully-connected and correspond to a\ntraditional MLP (hidden layer + logistic regression). The input to the\nfirst fully-connected layer is the set of all features maps at the layer\nbelow.\n\nFrom an implementation point of view, this means lower-layers operate on 4D\ntensors. These are then flattened to a 2D matrix of rasterized feature maps,\nto be compatible with our previous MLP implementation.\n\n\nPutting it All Together\n+++++++++++++++++++++++\n\nWe now have all we need to implement a LeNet model in Theano. We start with the\nLeNetConvPoolLayer class, which implements a {convolution + max-pooling}\nlayer.\n\n.. literalinclude:: ../code/convolutional_mlp.py\n  :pyobject: LeNetConvPoolLayer\n\nNotice that when initializing the weight values, the fan-in is determined by\nthe size of the receptive fields and the number of input feature maps.\n\nFinally, using the LogisticRegression class defined in :doc:`logreg` and\nthe HiddenLayer class defined in :doc:`mlp` , we can\ninstantiate the network as follows.\n\n.. literalinclude:: ../code/convolutional_mlp.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n  \nWe leave out the code that performs the actual training and early-stopping,\nsince it is exactly the same as with an MLP. The interested reader can\nnevertheless access the code in the 'code' folder of DeepLearningTutorials.\n\nRunning the Code\n++++++++++++++++\n\nThe user can then run the code by calling:\n\n.. code-block:: bash\n\n    python code/convolutional_mlp.py\n\nThe following output was obtained with the default parameters on a Core i7-2600K\nCPU clocked at 3.40GHz and using flags 'floatX=float32':\n\n.. code-block:: bash\n\n    Optimization complete.\n    Best validation score of 0.910000 % obtained at iteration 17800,with test\n    performance 0.920000 %\n    The code for file convolutional_mlp.py ran for 380.28m\n\nUsing a GeForce GTX 285, we obtained the following:\n\n.. code-block:: bash\n\n    Optimization complete.\n    Best validation score of 0.910000 % obtained at iteration 15500,with test\n    performance 0.930000 %\n    The code for file convolutional_mlp.py ran for 46.76m\n\nAnd similarly on a GeForce GTX 480:\n\n.. code-block:: bash\n\n    Optimization complete.\n    Best validation score of 0.910000 % obtained at iteration 16400,with test\n    performance 0.930000 %\n    The code for file convolutional_mlp.py ran for 32.52m\n\nNote that the discrepancies in validation and test error (as well as iteration\ncount) are due to different implementations of the rounding mechanism in\nhardware. They can be safely ignored.\n\nTips and Tricks\n+++++++++++++++\n\nChoosing Hyperparameters\n------------------------\n\nCNNs are especially tricky to train, as they add even more hyper-parameters than\na standard MLP. While the usual rules of thumb for learning rates and\nregularization constants still apply, the following should be kept in mind when\noptimizing CNNs.\n\nNumber of filters\n*****************\nWhen choosing the number of filters per layer, keep in mind that computing the\nactivations of a single convolutional filter is much more expensive than with\ntraditional MLPs !\n\nAssume layer :math:`(l-1)` contains :math:`K^{l-1}` feature\nmaps and :math:`M \\times N` pixel positions (i.e.,\nnumber of positions times number of feature maps),\nand there are :math:`K^l` filters at layer :math:`l` of shape :math:`m \\times n`.\nThen computing a feature map (applying an :math:`m \\times n` filter\nat all :math:`(M-m) \\times (N-n)` pixel positions where the\nfilter can be applied) costs :math:`(M-m) \\times (N-n) \\times m \\times n \\times K^{l-1}`.\nThe total cost is :math:`K^l` times that. Things may be more complicated if\nnot all features at one level are connected to all features at the previous one.\n\nFor a standard MLP, the cost would only be :math:`K^l \\times K^{l-1}`\nwhere there are :math:`K^l` different neurons at level :math:`l`.\nAs such, the number of filters used in CNNs is typically much\nsmaller than the number of hidden units in MLPs and depends on the size of the\nfeature maps (itself a function of input image size and filter shapes).\n\nSince feature map size decreases with depth, layers near the input layer will tend to\nhave fewer filters while layers higher up can have much more. In fact, to\nequalize computation at each layer, the product of the number of features\nand the number of pixel positions is typically picked to be roughly constant\nacross layers. To preserve the information about the input would require\nkeeping the total number of activations (number of feature maps times\nnumber of pixel positions) to be non-decreasing from one layer to the next\n(of course we could hope to get away with less when we are doing supervised\nlearning). The number of feature maps directly controls capacity and so\nthat depends on the number of available examples and the complexity of\nthe task.\n\n\nFilter Shape\n************\nCommon filter shapes found in the litterature vary greatly, usually based on\nthe dataset. Best results on MNIST-sized images (28x28) are usually in the 5x5\nrange on the first layer, while natural image datasets (often with hundreds of pixels in each\ndimension) tend to use larger first-layer filters of shape 12x12 or 15x15.\n\nThe trick is thus to find the right level of \"granularity\" (i.e. filter\nshapes) in order to create abstractions at the proper scale, given a\nparticular dataset.\n\n\nMax Pooling Shape\n*****************\nTypical values are 2x2 or no max-pooling. Very large input images may warrant\n4x4 pooling in the lower-layers. Keep in mind however, that this will reduce the\ndimension of the signal by a factor of 16, and may result in throwing away too\nmuch information.\n\n\n.. rubric:: Footnotes\n\n.. [#f1] For clarity, we use the word \"unit\" or \"neuron\" to refer to the\n         artificial neuron and \"cell\" to refer to the biological neuron.\n\n\nTips\n****\n\nIf you want to try this model on a new dataset, here are a few tips that can help you get better results:\n\n * Whitening the data (e.g. with PCA)\n * Decay the learning rate in each epoch\n"
  },
  {
    "path": "DeepLearningTutorials/doc/logreg.txt",
    "content": ".. index:: Logistic Regression\n\n.. _logreg :\n\n\nClassifying MNIST digits using Logistic Regression\n==================================================\n\n.. note::\n    This sections assumes familiarity with the following Theano\n    concepts: `shared variables`_ , `basic arithmetic ops`_ , `T.grad`_ ,\n    `floatX`_. If you intend to run the code on GPU also read `GPU`_.\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/logistic_sgd.py\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html\n\nIn this section, we show how Theano can be used to implement the most basic\nclassifier: the logistic regression. We start off with a quick primer of the\nmodel, which serves both as a refresher but also to anchor the notation and\nshow how mathematical expressions are mapped onto Theano graphs.\n\nIn the deepest of machine learning traditions, this tutorial will tackle the exciting\nproblem of MNIST digit classification.\n\nThe Model\n+++++++++\n\nLogistic regression is a probabilistic, linear classifier. It is parametrized\nby a weight matrix :math:`W` and a bias vector :math:`b`. Classification is\ndone by projecting an input vector onto a set of hyperplanes, each of which\ncorresponds to a class. The distance from the input to a hyperplane reflects\nthe probability that the input is a member of the corresponding class.\n\nMathematically, the probability that an input vector :math:`x` is a member of a\nclass :math:`i`, a value of a stochastic variable :math:`Y`, can be written as:\n\n.. math::\n  P(Y=i|x, W,b) &= softmax_i(W x + b) \\\\\n                &= \\frac {e^{W_i x + b_i}} {\\sum_j e^{W_j x + b_j}}\n\nThe model's prediction :math:`y_{pred}` is the class whose probability is maximal, specifically:\n\n.. math::\n  y_{pred} = {\\rm argmax}_i P(Y=i|x,W,b)\n\nThe code to do this in Theano is the following:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nSince the parameters of the model must maintain a persistent state throughout\ntraining, we allocate shared variables for :math:`W,b`. This declares them both\nas being symbolic Theano variables, but also initializes their contents. The\ndot and softmax operators are then used to compute the vector :math:`P(Y|x,\nW,b)`. The result ``p_y_given_x`` is a symbolic variable of vector-type.\n\nTo get the actual model prediction, we can use the ``T.argmax`` operator, which\nwill return the index at which ``p_y_given_x`` is maximal (i.e. the class with\nmaximum probability).\n\nNow of course, the model we have defined so far does not do anything useful\nyet, since its parameters are still in their initial state. The following\nsection will thus cover how to learn the optimal parameters.\n\n\n.. note::\n    For a complete list of Theano ops, see: `list of ops <http://deeplearning.net/software/theano/library/tensor/basic.html#basic-tensor-functionality>`_\n\n\nDefining a Loss Function\n++++++++++++++++++++++++\n\nLearning optimal model parameters involves minimizing a loss function. In the\ncase of multi-class logistic regression, it is very common to use the negative\nlog-likelihood as the loss. This is equivalent to maximizing the likelihood of the\ndata set :math:`\\cal{D}` under the model parameterized by :math:`\\theta`. Let\nus first start by defining the likelihood :math:`\\cal{L}` and loss\n:math:`\\ell`:\n\n.. math::\n\n   \\mathcal{L} (\\theta=\\{W,b\\}, \\mathcal{D}) =\n     \\sum_{i=0}^{|\\mathcal{D}|} \\log(P(Y=y^{(i)}|x^{(i)}, W,b)) \\\\\n   \\ell (\\theta=\\{W,b\\}, \\mathcal{D}) = - \\mathcal{L} (\\theta=\\{W,b\\}, \\mathcal{D})\n\nWhile entire books are dedicated to the topic of minimization, gradient\ndescent is by far the simplest method for minimizing arbitrary non-linear\nfunctions. This tutorial will use the method of stochastic gradient method with\nmini-batches (MSGD). See :ref:`opt_SGD` for more details.\n\nThe following Theano code defines the (symbolic) loss for a given minibatch:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\n.. note::\n\n    Even though the loss is formally defined as the *sum*, over the data set,\n    of individual error terms, in practice, we use the *mean* (``T.mean``)\n    in the code. This allows for the learning rate choice to be less dependent\n    of the minibatch size.\n\n\nCreating a LogisticRegression class\n+++++++++++++++++++++++++++++++++++\n\nWe now have all the tools we need to define a ``LogisticRegression`` class, which\nencapsulates the basic behaviour of logistic regression. The code is very\nsimilar to what we have covered so far, and should be self explanatory.\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :pyobject: LogisticRegression\n\nWe instantiate this class as follows:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: index = T.lscalar()  \n  :end-before: # the cost we minimize during\n\nWe start by allocating symbolic variables for the training inputs :math:`x` and\ntheir corresponding classes :math:`y`. Note that ``x`` and ``y`` are defined\noutside the scope of the ``LogisticRegression`` object. Since the class\nrequires the input to build its graph, it is passed as a parameter of the\n``__init__`` function. This is useful in case you want to connect instances of\nsuch classes to form a deep network. The output of one layer can be passed as\nthe input of the layer above. (This tutorial does not build a multi-layer\nnetwork, but this code will be reused in future tutorials that do.)\n\nFinally, we define a (symbolic) ``cost`` variable to minimize, using the instance\nmethod ``classifier.negative_log_likelihood``.\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: classifier = LogisticRegression(input=x, n_in=28 * 28, n_out=10) \n  :end-before: # compiling a Theano function that computes the mistakes\n\nNote that ``x`` is an implicit symbolic input to the definition of ``cost``,\nbecause the symbolic variables of ``classifier`` were defined in terms of ``x``\nat initialization.\n\nLearning the Model\n++++++++++++++++++\n\nTo implement MSGD in most programming languages (C/C++, Matlab, Python), one\nwould start by manually deriving the expressions for the gradient of the loss\nwith respect to the parameters: in this case :math:`\\partial{\\ell}/\\partial{W}`,\nand :math:`\\partial{\\ell}/\\partial{b}`, This can get pretty tricky for complex\nmodels, as expressions for :math:`\\partial{\\ell}/\\partial{\\theta}` can get\nfairly complex, especially when taking into account problems of numerical\nstability.\n\nWith Theano, this work is greatly simplified. It performs\nautomatic differentiation and applies certain math transforms to improve\nnumerical stability.\n\nTo get the gradients :math:`\\partial{\\ell}/\\partial{W}` and\n:math:`\\partial{\\ell}/\\partial{b}` in Theano, simply do the following:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: # compute the gradient of cost\n  :end-before: # start-snippet-3\n\n``g_W`` and ``g_b`` are symbolic variables, which can be used as part\nof a computation graph. The function ``train_model``, which performs one step\nof gradient descent, can then be defined as follows:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\n``updates`` is a list of pairs. In each pair, the first element is the symbolic\nvariable to be updated in the step, and the second element is the symbolic\nfunction for calculating its new value. Similarly, ``givens`` is a dictionary\nwhose keys are symbolic variables and whose values specify\ntheir replacements during the step. The function ``train_model`` is then defined such\nthat:\n\n* the input is the mini-batch index ``index`` that, together with the batch\n  size (which is not an input since it is fixed) defines :math:`x` with\n  corresponding labels :math:`y`\n* the return value is the cost/loss associated with the x, y defined by\n  the ``index``\n* on every function call, it will first replace ``x`` and ``y`` with the slices\n  from the training set specified by ``index``. Then, it will evaluate the cost\n  associated with that minibatch and apply the operations defined by the\n  ``updates`` list.\n\nEach time ``train_model(index)`` is called, it will thus compute and return the\ncost of a minibatch, while also performing a step of MSGD. The entire learning\nalgorithm thus consists in looping over all examples in the dataset, considering\nall the examples in one minibatch at a time,\nand repeatedly calling the ``train_model`` function.\n\n\nTesting the model\n+++++++++++++++++\n\nAs explained in :ref:`opt_learn_classifier`, when testing the model we are\ninterested in the number of misclassified examples (and not only in the likelihood).\nThe ``LogisticRegression`` class therefore has an extra instance method, which\nbuilds the symbolic graph for retrieving the number of misclassified examples in\neach minibatch.\n\nThe code is as follows:\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :pyobject: LogisticRegression.errors\n\nWe then create a function ``test_model`` and a function ``validate_model``,\nwhich we can call to retrieve this value. As you will see shortly,\n``validate_model`` is key to our early-stopping implementation (see\n:ref:`opt_early_stopping`). These functions take a minibatch index and compute,\nfor the examples in that minibatch, the number that were misclassified by the\nmodel. The only difference between them is that ``test_model`` draws its\nminibatches from the testing set, while ``validate_model`` draws its from the\nvalidation set.\n\n.. literalinclude:: ../code/logistic_sgd.py\n  :start-after: cost = classifier.negative_log_likelihood(y)\n  :end-before: # compute the gradient of cost \n\nPutting it All Together\n+++++++++++++++++++++++\n\nThe finished product is as follows.\n\n.. literalinclude:: ../code/logistic_sgd.py\n\nThe user can learn to classify MNIST digits with SGD logistic regression, by typing, from\nwithin the DeepLearningTutorials folder:\n\n.. code-block:: bash\n\n    python code/logistic_sgd.py\n\nThe output one should expect is of the form :\n\n.. code-block:: bash\n\n    ...\n    epoch 72, minibatch 83/83, validation error 7.510417 %\n         epoch 72, minibatch 83/83, test error of best model 7.510417 %\n    epoch 73, minibatch 83/83, validation error 7.500000 %\n         epoch 73, minibatch 83/83, test error of best model 7.489583 %\n    Optimization complete with best validation score of 7.500000 %,with test performance 7.489583 %\n    The code run for 74 epochs, with 1.936983 epochs/sec\n\n\nOn an Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00 Ghz  the code runs with\napproximately 1.936 epochs/sec and it took 75 epochs to reach a test\nerror of 7.489%. On the GPU the code does almost 10.0 epochs/sec. For this\ninstance we used a batch size of 600.\n\n.. rubric:: Footnotes\n\n.. [#f1] For smaller datasets and simpler models, more sophisticated descent\n         algorithms can be more effective. The sample code\n         `logistic_cg.py <http://deeplearning.net/tutorial/code/logistic_cg.py>`_\n         demonstrates how to use SciPy's conjugate gradient solver with Theano\n         on the logistic regression task.\n"
  },
  {
    "path": "DeepLearningTutorials/doc/lstm.txt",
    "content": ".. _lstm:\n\nLSTM Networks for Sentiment Analysis\n**********************************************\n\nSummary\n+++++++\n\nThis tutorial aims to provide an example of how a Recurrent Neural Network\n(RNN) using the Long Short Term Memory (LSTM) architecture can be implemented\nusing Theano. In this tutorial, this model is used to perform sentiment\nanalysis on movie reviews from the `Large Movie Review Dataset\n<http://ai.stanford.edu/~amaas/data/sentiment/>`_, sometimes known as the\nIMDB dataset.\n\nIn this task, given a movie review, the model attempts to predict whether it\nis positive or negative. This is a binary classification task.\n\nData\n++++\n\nAs previously mentioned, the provided scripts are used to train a LSTM\nrecurrent neural network on the Large Movie Review Dataset dataset.\n\nWhile the dataset is public, in this tutorial we provide a copy of the dataset\nthat has previously been preprocessed according to the needs of this LSTM\nimplementation. Running the code provided in this tutorial will automatically\ndownload the data to the local directory.\n\nModel\n+++++\n\nLSTM\n====\n\nIn a *traditional* recurrent neural network, during the gradient\nback-propagation phase, the gradient signal can end up being multiplied a\nlarge number of times (as many as the number of timesteps) by the weight\nmatrix associated with the connections between the neurons of the recurrent\nhidden layer. This means that, the magnitude of weights in the transition\nmatrix can have a strong impact on the learning process.\n\nIf the weights in this matrix are small (or, more formally, if the leading\neigenvalue of the weight matrix is smaller than 1.0), it can lead to a\nsituation called *vanishing gradients* where the gradient signal gets so small\nthat learning either becomes very slow or stops working altogether. It can\nalso make more difficult the task of learning long-term dependencies in the\ndata. Conversely, if the weights in this matrix are large (or, again, more\nformally, if the leading eigenvalue of the weight matrix is larger than 1.0),\nit can lead to a situation where the gradient signal is so large that it can\ncause learning to diverge. This is often referred to as *exploding gradients*.\n\nThese issues are the main motivation behind the LSTM model which introduces a\nnew structure called a *memory cell* (see Figure 1 below). A memory cell is\ncomposed of four main elements: an input gate, a neuron with a self-recurrent\nconnection (a connection to itself), a forget gate and an output gate. The\nself-recurrent connection has a weight of 1.0 and ensures that, barring any\noutside interference, the state of a memory cell can remain constant from one\ntimestep to another. The gates serve to modulate the interactions between the\nmemory cell itself and its environment. The input gate can allow incoming\nsignal to alter the state of the memory cell or block it. On the other hand,\nthe output gate can allow the state of the memory cell to have an effect on\nother neurons or prevent it. Finally, the forget gate can modulate the memory\ncell’s self-recurrent connection, allowing the cell to remember or forget its\nprevious state, as needed.\n\n.. figure:: images/lstm_memorycell.png\n    :align: center\n\n    **Figure 1** : Illustration of an LSTM memory cell.\n\nThe equations below describe how a layer of memory cells is updated at every\ntimestep :math:`t`. In these equations :\n\n*       :math:`x_t` is the input to the memory cell layer at time :math:`t`\n*       :math:`W_i`, :math:`W_f`, :math:`W_c`, :math:`W_o`, :math:`U_i`,\n        :math:`U_f`, :math:`U_c`, :math:`U_o` and :math:`V_o` are weight\n        matrices\n*       :math:`b_i`, :math:`b_f`, :math:`b_c` and :math:`b_o` are bias vectors\n\n\nFirst, we compute the values for :math:`i_t`, the input gate, and\n:math:`\\widetilde{C_t}` the candidate value for the states of the memory\ncells at time :math:`t` :\n\n.. math::\n    :label: 1\n\n    i_t = \\sigma(W_i x_t + U_i h_{t-1} + b_i)\n\n.. math::\n    :label: 2\n\n    \\widetilde{C_t} = tanh(W_c x_t + U_c h_{t-1} + b_c)\n\nSecond, we compute the value for :math:`f_t`, the activation of the memory\ncells' forget gates at time :math:`t` :\n\n.. math::\n    :label: 3\n\n    f_t = \\sigma(W_f x_t + U_f h_{t-1} + b_f)\n\nGiven the value of the input gate activation :math:`i_t`, the forget gate\nactivation :math:`f_t` and the candidate state value :math:`\\widetilde{C_t}`,\nwe can compute :math:`C_t` the memory cells' new state at time :math:`t` :\n\n.. math::\n    :label: 4\n\n    C_t = i_t * \\widetilde{C_t} + f_t * C_{t-1}\n\nWith the new state of the memory cells, we can compute the value of their\noutput gates and, subsequently, their outputs :\n\n.. math::\n    :label: 5\n\n    o_t = \\sigma(W_o x_t + U_o h_{t-1} + V_o C_t + b_1)\n\n.. math::\n    :label: 6\n\n    h_t = o_t * tanh(C_t)\n\nOur model\n=========\n\nThe model we used in this tutorial is a variation of the standard LSTM model.\nIn this variant, the activation of a cell’s output gate does not depend on the\nmemory cell’s state :math:`C_t`. This allows us to perform part of the\ncomputation more efficiently (see the implementation note, below, for\ndetails). This means that, in the variant we have implemented, there is no\nmatrix :math:`V_o` and equation :eq:`5` is replaced by equation :eq:`5-alt` :\n\n.. math::\n    :label: 5-alt\n\n    o_t = \\sigma(W_o x_t + U_o h_{t-1} + b_1)\n\nOur model is composed of a single LSTM layer followed by an average pooling\nand a logistic regression layer as illustrated in Figure 2 below. Thus, from\nan input sequence :math:`x_0, x_1, x_2, ..., x_n`, the memory cells in the\nLSTM layer will produce a representation sequence :math:`h_0, h_1, h_2, ...,\nh_n`. This representation sequence is then averaged over all timesteps\nresulting in representation h. Finally, this representation is fed to a\nlogistic regression layer whose target is the class label associated with the\ninput sequence.\n\n.. figure:: images/lstm.png\n    :align: center\n\n    **Figure 2** : Illustration of the model used in this tutorial. It is\n    composed of a single LSTM layer followed by mean pooling over time and\n    logistic regression.\n\n**Implementation note** : In the code included this tutorial, the equations\n:eq:`1`, :eq:`2`, :eq:`3` and :eq:`5-alt` are performed in parallel to make\nthe computation more efficient. This is possible because none of these\nequations rely on a result produced by the other ones. It is achieved by\nconcatenating the four matrices :math:`W_*` into a single weight matrix\n:math:`W` and performing the same concatenation on the weight matrices\n:math:`U_*` to produce the matrix :math:`U` and the bias vectors :math:`b_*`\nto produce the vector :math:`b`. Then, the pre-nonlinearity activations can\nbe computed with :\n\n.. math::\n\n    z = \\sigma(W x_t + U h_{t-1} + b)\n\nThe result is then sliced to obtain the pre-nonlinearity activations for\n:math:`i`, :math:`f`, :math:`\\widetilde{C_t}`, and :math:`o` and the\nnon-linearities are then applied independently for each.\n\n\nCode - Citations - Contact\n++++++++++++++++++++++++++\n\nCode\n====\n\nThe LSTM implementation can be found in the two following files :\n\n* `lstm.py <http://deeplearning.net/tutorial/code/lstm.py>`_ : Main script. Defines and train the model.\n\n* `imdb.py <http://deeplearning.net/tutorial/code/imdb.py>`_ : Secondary script. Handles the loading and preprocessing of the IMDB dataset.\n\nAfter downloading both scripts and putting both in the same folder, the user\ncan run the code by calling:\n\n.. code-block:: bash\n\n    THEANO_FLAGS=\"floatX=float32\" python lstm.py\n\nThe script will automatically download the data and decompress it.\n\n**Note** : The provided code supports the Stochastic Gradient Descent (SGD),\nAdaDelta and RMSProp optimization methods. You are advised to use AdaDelta or\nRMSProp because SGD appears to performs poorly on this task with this\nparticular model.\n\nPapers\n======\n\nIf you use this tutorial, please cite the following papers.\n\nIntroduction of the LSTM model:\n\n* `[pdf] <http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf>`_ Hochreiter, S., & Schmidhuber, J. (1997). Long short-term memory. Neural computation, 9(8), 1735-1780.\n\nAddition of the forget gate to the LSTM model:\n\n* `[pdf] <http://www.mitpressjournals.org/doi/pdf/10.1162/089976600300015015>`_ Gers, F. A., Schmidhuber, J., & Cummins, F. (2000). Learning to forget: Continual prediction with LSTM. Neural computation, 12(10), 2451-2471.\n\nMore recent LSTM paper:\n\n* `[pdf] <http://www.cs.toronto.edu/~graves/preprint.pdf>`_ Graves, Alex. Supervised sequence labelling with recurrent neural networks. Vol. 385. Springer, 2012.\n\nPapers related to Theano:\n\n* `[pdf] <http://www.iro.umontreal.ca/~lisa/pointeurs/nips2012_deep_workshop_theano_final.pdf>`_ Bastien, Frédéric, Lamblin, Pascal, Pascanu, Razvan, Bergstra, James, Goodfellow, Ian, Bergeron, Arnaud, Bouchard, Nicolas, and Bengio, Yoshua. Theano: new features and speed improvements. NIPS Workshop on Deep Learning and Unsupervised Feature Learning, 2012.\n\n* `[pdf] <http://www.iro.umontreal.ca/~lisa/pointeurs/theano_scipy2010.pdf>`_ Bergstra, James, Breuleux, Olivier, Bastien, Frédéric, Lamblin, Pascal, Pascanu, Razvan, Desjardins, Guillaume, Turian, Joseph, Warde-Farley, David, and Bengio, Yoshua. Theano: a CPU and GPU math expression compiler. In Proceedings of the Python for Scientific Computing Conference (SciPy), June 2010.\n\nThank you!\n\nContact\n=======\n\nPlease email `Kyunghyun Cho <http://www.kyunghyuncho.me/>`_ for any\nproblem report or feedback. We will be glad to hear from you.\n\nReferences\n++++++++++\n\n* Hochreiter, S., & Schmidhuber, J. (1997). Long short-term memory. Neural computation, 9(8), 1735-1780.\n\n* Gers, F. A., Schmidhuber, J., & Cummins, F. (2000). Learning to forget: Continual prediction with LSTM. Neural computation, 12(10), 2451-2471.\n\n* Graves, A. (2012). Supervised sequence labelling with recurrent neural networks (Vol. 385). Springer.\n\n* Hochreiter, S., Bengio, Y., Frasconi, P., & Schmidhuber, J. (2001). Gradient flow in recurrent nets: the difficulty of learning long-term dependencies.\n\n* Bengio, Y., Simard, P., & Frasconi, P. (1994). Learning long-term dependencies with gradient descent is difficult. Neural Networks, IEEE Transactions on, 5(2), 157-166.\n\n* Maas, A. L., Daly, R. E., Pham, P. T., Huang, D., Ng, A. Y., & Potts, C. (2011, June). Learning word vectors for sentiment analysis. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies-Volume 1 (pp. 142-150). Association for Computational Linguistics.\n"
  },
  {
    "path": "DeepLearningTutorials/doc/mlp.txt",
    "content": ".. index:: Multilayer Perceptron\n\n.. _mlp:\n\n\nMultilayer Perceptron\n=====================\n\n.. note::\n    This section assumes the reader has already read through :doc:`logreg`.\n    Additionally, it uses the following new Theano functions and concepts:\n    `T.tanh`_, `shared variables`_, `basic arithmetic ops`_, `T.grad`_,\n    :ref:`L1_L2_regularization`, `floatX`_. If you intend to run the\n    code on GPU also read `GPU`_.\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/mlp.py\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html\n\n\nThe next architecture we are going to present using Theano is the\nsingle-hidden-layer Multi-Layer Perceptron (MLP). An MLP can be viewed as a\nlogistic regression classifier where the input is first transformed using a\nlearnt non-linear transformation :math:`\\Phi`. This transformation projects the\ninput data into a space where it becomes linearly separable. This intermediate\nlayer is referred to as a **hidden layer**. A single hidden layer is sufficient\nto make MLPs a **universal approximator**. However we will see later on that\nthere are substantial benefits to using many such hidden layers, i.e. the very\npremise of **deep learning**. See these course notes for an `introduction to\nMLPs, the back-propagation algorithm, and how to train MLPs\n<http://www.iro.umontreal.ca/~pift6266/H10/notes/mlp.html>`_.\n\nThis tutorial will again tackle the problem of MNIST digit classification.\n\nThe Model\n+++++++++\n\nAn MLP (or Artificial Neural Network - ANN) with a single hidden layer\ncan be represented graphically as\nfollows:\n\n.. figure:: images/mlp.png\n    :align: center\n\nFormally, a one-hidden-layer MLP is a function :math:`f: R^D \\rightarrow\nR^L`, where :math:`D` is the size of input vector :math:`x` and :math:`L` is\nthe size of the output vector :math:`f(x)`, such that, in matrix notation:\n\n.. math::\n\n    f(x) = G( b^{(2)} + W^{(2)}( s( b^{(1)} + W^{(1)} x))),\n\nwith bias vectors :math:`b^{(1)}`, :math:`b^{(2)}`; weight matrices\n:math:`W^{(1)}`, :math:`W^{(2)}` and activation functions :math:`G` and :math:`s`.\n\nThe vector :math:`h(x) = \\Phi(x) = s(b^{(1)} + W^{(1)} x)` constitutes the hidden layer.\n:math:`W^{(1)} \\in R^{D \\times D_h}` is the weight matrix connecting the input vector\nto the hidden layer.  Each column :math:`W^{(1)}_{\\cdot i}` represents the weights\nfrom the input units to the i-th hidden unit. Typical choices for :math:`s`\ninclude :math:`tanh`, with :math:`tanh(a)=(e^a-e^{-a})/(e^a+e^{-a})`,\nor the logistic :math:`sigmoid` function, with :math:`sigmoid(a)=1/(1+e^{-a})`. We will be using\n:math:`tanh` in this tutorial because it typically yields to faster training\n(and sometimes also to better local minima). Both the :math:`tanh`\nand :math:`sigmoid` are scalar-to-scalar functions but their natural\nextension to vectors and tensors consists in applying them element-wise\n(e.g. separately on each element of the vector, yielding a same-size vector).\n\nThe output vector is then obtained as: :math:`o(x) = G(b^{(2)} + W^{(2)} h(x))`.\nThe reader should recognize the form we already used for\n:doc:`logreg`. As before,\nclass-membership probabilities can be obtained by choosing :math:`G` as the\n:math:`softmax` function (in the case of multi-class classification).\n\nTo train an MLP, we learn **all** parameters of the model, and here we use\n:ref:`opt_SGD` with minibatches.\nThe set of parameters to learn is the set :math:`\\theta =\n\\{W^{(2)},b^{(2)},W^{(1)},b^{(1)}\\}`.  Obtaining the gradients\n:math:`\\partial{\\ell}/\\partial{\\theta}` can be achieved through the\n**backpropagation algorithm** (a special case of the chain-rule of derivation).\nThankfully, since Theano performs automatic differentation, we will not need to\ncover this in the tutorial !\n\n\nGoing from logistic regression to MLP\n+++++++++++++++++++++++++++++++++++++\n\nThis tutorial will focus on a single-hidden-layer MLP. We start off by\nimplementing a class that will represent a hidden layer. To\nconstruct the MLP we will then only need to throw a logistic regression\nlayer on top.\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nThe initial values for the weights of a hidden layer :math:`i` should be uniformly\nsampled from a symmetric interval that depends on the activation function. For\n:math:`tanh` activation function results obtained in [Xavier10]_ show that the\ninterval should be\n:math:`[-\\sqrt{\\frac{6}{fan_{in}+fan_{out}}},\\sqrt{\\frac{6}{fan_{in}+fan_{out}}}]`, where\n:math:`fan_{in}` is the number of units in the :math:`(i-1)`-th layer,\nand :math:`fan_{out}` is the number of units in the :math:`i`-th layer. For\nthe sigmoid function the interval is :math:`[-4\\sqrt{\\frac{6}{fan_{in}+fan_{out}}},4\\sqrt{\\frac{6}{fan_{in}+fan_{out}}}]`.\nThis initialization ensures that, early in training, each neuron operates in a\nregime of its activation function where information can easily be propagated\nboth upward (activations flowing from inputs to outputs) and backward\n(gradients flowing from outputs to inputs).\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: end-snippet-1\n  :end-before:  lin_output = T.dot(input, self.W) + self.b\n\nNote that we used a given non-linear function as the activation function of the hidden layer. By default this is ``tanh``, but in many cases we might want\nto use something else.\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: self.b = b\n  :end-before: # parameters of the model\n\nIf you look into theory this class implements the graph that computes\nthe hidden layer value :math:`h(x) = \\Phi(x) = s(b^{(1)} + W^{(1)} x)`.\nIf you give this graph as input to the ``LogisticRegression`` class,\nimplemented in the previous tutorial :doc:`logreg`, you get the output\nof the MLP. You can see this in the following short implementation of\nthe ``MLP`` class.\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nIn this tutorial we will also use L1 and L2 regularization (see\n:ref:`L1_L2_regularization`). For this, we need to compute the L1 norm and the squared L2\nnorm of the weights :math:`W^{(1)}, W^{(2)}`.\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\nAs before, we train this model using stochastic gradient descent with\nmini-batches. The difference is that we modify the cost function to include the\nregularization term. ``L1_reg`` and ``L2_reg`` are the hyperparameters\ncontrolling the weight of these regularization terms in the total cost function.\nThe code that computes the new cost is:\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: start-snippet-4\n  :end-before: end-snippet-4\n\nWe then update the parameters of the model using the gradient. This code is\nalmost identical to the one for logistic regression. Only the number of\nparameters differ. To get around this ( and write code that could work\nfor any number of parameters) we will use the list of parameters that\nwe created with the model ``params`` and parse it, computing a gradient\nat each step.\n\n.. literalinclude:: ../code/mlp.py\n  :start-after: start-snippet-5\n  :end-before: end-snippet-5\n\nPutting it All Together\n+++++++++++++++++++++++\n\nHaving covered the basic concepts, writing an MLP class becomes quite easy.\nThe code below shows how this can be done, in a way which is analogous to our previous logistic regression implementation.\n\n.. literalinclude:: ../code/mlp.py\n\nThe user can then run the code by calling :\n\n.. code-block:: bash\n\n    python code/mlp.py\n\nThe output one should expect is of the form :\n\n.. code-block:: bash\n\n  Optimization complete. Best validation score of 1.690000 % obtained at iteration 2070000, with test performance 1.650000 %\n  The code for file mlp.py ran for 97.34m\n\nOn an Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz the code runs with\napproximately 10.3 epoch/minute and it took 828 epochs to reach a test\nerror of 1.65%.\n\nTo put this into perspective, we refer the reader to the results section of `this\n<http://yann.lecun.com/exdb/mnist>`_  page.\n\nTips and Tricks for training MLPs\n+++++++++++++++++++++++++++++++++\n\nThere are several hyper-parameters in the above code, which are not (and,\ngenerally speaking, cannot be) optimized by gradient descent. Strictly speaking,\nfinding an optimal set of values for these\nhyper-parameters is not a feasible problem. First, we can't simply optimize\neach of them independently. Second, we cannot readily apply gradient\ntechniques that we described previously (partly because some parameters are\ndiscrete values and others are real-valued). Third, the optimization problem\nis not convex and finding a (local) minimum would involve a non-trivial\namount of work.\n\nThe good news is that over the last 25 years, researchers have devised various\nrules of thumb for choosing hyper-parameters in a neural network. A very\ngood overview of these tricks can be found in `Efficient\nBackProp <http://yann.lecun.com/exdb/publis/pdf/lecun-98b.pdf>`_ by Yann LeCun,\nLeon Bottou, Genevieve Orr, and Klaus-Robert Mueller. In here, we summarize\nthe same issues, with an emphasis on the parameters and techniques that we\nactually used in our code.\n\nNonlinearity\n--------------\n\nTwo of the most common ones are the :math:`sigmoid` and the :math:`tanh` function. For\nreasons explained in `Section 4.4  <http://yann.lecun.com/exdb/publis/pdf/lecun-98b.pdf>`_, nonlinearities that\nare symmetric around the origin are preferred because they tend to produce\nzero-mean inputs to the next layer (which is a desirable property).\nEmpirically, we have observed that the :math:`tanh` has better convergence\nproperties.\n\nWeight initialization\n---------------------\n\nAt initialization we want the weights to be small enough around the origin\nso that the activation function operates in its linear regime, where gradients are\nthe largest. Other desirable properties, especially for deep networks,\nare to conserve variance of the activation as well as variance of back-propagated gradients from layer to layer.\nThis allows information to flow well upward and downward in the network and\nreduces discrepancies between layers.\nUnder some assumptions, a compromise between these two constraints leads to the following\ninitialization: :math:`uniform[-\\frac{\\sqrt{6}}{\\sqrt{fan_{in}+fan_{out}}},\\frac{\\sqrt{6}}{\\sqrt{fan_{in}+fan_{out}}}]`\nfor tanh and :math:`uniform[-4*\\frac{\\sqrt{6}}{\\sqrt{fan_{in}+fan_{out}}},4*\\frac{\\sqrt{6}}{\\sqrt{fan_{in}+fan_{out}}}]`\nfor sigmoid. Where :math:`fan_{in}` is the number of inputs and :math:`fan_{out}` the number of hidden units.\nFor mathematical considerations please refer to [Xavier10]_.\n\nLearning rate\n--------------\n\nThere is a great deal of literature on choosing a good learning rate. The\nsimplest solution is to simply have a constant rate. Rule of thumb: try\nseveral log-spaced values (:math:`10^{-1},10^{-2},\\ldots`) and narrow the\n(logarithmic) grid search to the region where you obtain the lowest\nvalidation error.\n\nDecreasing the learning rate over time is sometimes a good idea. One simple\nrule for doing that is :math:`\\frac{\\mu_0}{1 + d\\times t}` where\n:math:`\\mu_0` is the initial rate (chosen, perhaps, using the grid search\ntechnique explained above), :math:`d` is a so-called \"decrease constant\"\nwhich controls the rate at which the learning rate decreases (typically, a\nsmaller positive number, :math:`10^{-3}` and smaller) and :math:`t` is the\nepoch/stage.\n\n`Section 4.7 <http://yann.lecun.com/exdb/publis/pdf/lecun-98b.pdf>`_ details\nprocedures for choosing a learning rate for each parameter (weight) in our\nnetwork and for choosing them adaptively based on the error of the\nclassifier.\n\nNumber of hidden units\n-----------------------\n\nThis hyper-parameter is very much dataset-dependent. Vaguely speaking, the\nmore complicated the input distribution is, the more capacity the network\nwill require to model it, and so the larger the number of hidden units that\nwill be needed (note that the number of weights in a layer, perhaps a more direct\nmeasure of capacity, is :math:`D\\times D_h` (recall :math:`D` is the number of\ninputs and :math:`D_h` is the number of hidden units).\n\nUnless we employ some regularization scheme (early stopping or L1/L2\npenalties), a typical number of hidden  units vs. generalization performance graph will be U-shaped.\n\nRegularization parameter\n------------------------\n\nTypical values to try for the L1/L2 regularization parameter :math:`\\lambda`\nare :math:`10^{-2},10^{-3},\\ldots`. In the framework that we described so\nfar, optimizing this parameter will not lead to significantly better\nsolutions, but is worth exploring nonetheless.\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/rbm.txt",
    "content": ".. _RBM:\n\nRestricted Boltzmann Machines (RBM)\n===================================\n\n\n.. note::\n  This section assumes the reader has already read through :doc:`logreg`\n  and :doc:`mlp`. Additionally it uses the following Theano functions\n  and concepts : `T.tanh`_, `shared variables`_, `basic arithmetic ops`_, `T.grad`_, `Random numbers`_, `floatX`_ and `scan`_. If you intend to run the code on GPU also read `GPU`_.\n\n.. _T.tanh: http://deeplearning.net/software/theano/tutorial/examples.html?highlight=tanh\n\n.. _shared variables: http://deeplearning.net/software/theano/tutorial/examples.html#using-shared-variables\n\n.. _basic arithmetic ops: http://deeplearning.net/software/theano/tutorial/adding.html#adding-two-scalars\n\n.. _T.grad: http://deeplearning.net/software/theano/tutorial/examples.html#computing-gradients\n\n.. _floatX: http://deeplearning.net/software/theano/library/config.html#config.floatX\n\n.. _GPU: http://deeplearning.net/software/theano/tutorial/using_gpu.html\n\n.. _Random numbers: http://deeplearning.net/software/theano/tutorial/examples.html#using-random-numbers\n\n.. _scan: http://deeplearning.net/software/theano/library/scan.html\n\n.. note::\n    The code for this section is available for download `here <http://deeplearning.net/tutorial/code/rbm.py>`_.\n\n\n\nEnergy-Based Models (EBM)\n+++++++++++++++++++++++++\n\n**Energy-based** models associate a scalar energy to each configuration of the\nvariables of interest. Learning corresponds to modifying that energy function\nso that its shape has desirable properties. For example, we would like\nplausible or desirable configurations to have low energy.  Energy-based\nprobabilistic models define a probability distribution through an energy\nfunction, as follows:\n\n.. math::\n  :label: energy1\n\n  p(x) = \\frac {e^{-E(x)}} {Z}.\n\nThe normalizing factor :math:`Z` is called the **partition function** by analogy\nwith physical systems.\n\n.. math::\n    Z = \\sum_x e^{-E(x)}\n\nAn energy-based model can be learnt by performing (stochastic) gradient\ndescent on the empirical negative log-likelihood of the training data. As for\nthe logistic regression we will first define the log-likelihood and then the\nloss function as being the negative log-likelihood.\n\n.. math::\n    \\mathcal{L}(\\theta, \\mathcal{D}) = \\frac{1}{N} \\sum_{x^{(i)} \\in\n    \\mathcal{D}} \\log\\ p(x^{(i)})\\\\\n    \\ell (\\theta, \\mathcal{D}) = - \\mathcal{L} (\\theta, \\mathcal{D})\n\nusing the stochastic gradient :math:`-\\frac{\\partial  \\log p(x^{(i)})}{\\partial\n\\theta}`, where :math:`\\theta` are the parameters of the model.\n\n\n**EBMs with Hidden Units**\n\nIn many cases of interest, we do not observe the example :math:`x` fully, or we\nwant to introduce some non-observed variables to increase the expressive power\nof the model. So we consider an observed part (still denoted :math:`x` here) and a\n**hidden** part :math:`h`. We can then write:\n\n.. math::\n  :label: energy2\n\n   P(x) = \\sum_h P(x,h) = \\sum_h \\frac{e^{-E(x,h)}}{Z}.\n\nIn such cases, to map this formulation to one similar to Eq. :eq:`energy1`, we\nintroduce the notation (inspired from physics) of **free energy**, defined as\nfollows:\n\n.. math::\n   :label: free_energy\n\n    \\mathcal{F}(x) = - \\log \\sum_h e^{-E(x,h)}\n\nwhich allows us to write,\n\n.. math::\n    &P(x) = \\frac{e^{-\\mathcal{F}(x)}}{Z} \\text{ with } Z=\\sum_x e^{-\\mathcal{F}(x)}.\n\nThe data negative log-likelihood gradient then has a particularly interesting\nform.\n\n.. math::\n  :label: free_energy_grad\n\n  - \\frac{\\partial  \\log p(x)}{\\partial \\theta}\n   &= \\frac{\\partial \\mathcal{F}(x)}{\\partial \\theta} -\n         \\sum_{\\tilde{x}} p(\\tilde{x}) \\\n             \\frac{\\partial \\mathcal{F}(\\tilde{x})}{\\partial \\theta}.\n\nNotice that the above gradient contains two terms, which are referred to as\nthe **positive** and **negative phase**. The terms positive and negative do\nnot refer to the sign of each term in the equation, but rather reflect their\neffect on the probability density defined by the model. The first term\nincreases the probability of training data (by reducing the corresponding free\nenergy), while the second term decreases the probability of samples generated\nby the model.\n\nIt is usually difficult to determine this gradient analytically, as it\ninvolves the computation of\n:math:`E_P [ \\frac{\\partial \\mathcal{F}(x)} {\\partial \\theta} ]`. This is\nnothing less than an expectation over all possible configurations of the input\n:math:`x` (under the distribution :math:`P` formed by the model) !\n\nThe first step in making this computation tractable is to estimate the\nexpectation using a fixed number of model samples. Samples used to estimate the\nnegative phase gradient are referred to as **negative particles**, which are\ndenoted as :math:`\\mathcal{N}`. The gradient can then be written as:\n\n.. math::\n  :label: bm_grad\n\n  - \\frac{\\partial \\log p(x)}{\\partial \\theta}\n   &\\approx\n    \\frac{\\partial \\mathcal{F}(x)}{\\partial \\theta} -\n     \\frac{1}{|\\mathcal{N}|}\\sum_{\\tilde{x} \\in \\mathcal{N}} \\\n     \\frac{\\partial \\mathcal{F}(\\tilde{x})}{\\partial \\theta}.\n\nwhere we would ideally like elements :math:`\\tilde{x}` of :math:`\\mathcal{N}` to be sampled\naccording to :math:`P` (i.e. we are doing Monte-Carlo).\nWith the above formula, we almost have a pratical, stochastic algorithm for\nlearning an EBM. The only missing ingredient is how to extract these negative\nparticles :math:`\\mathcal{N}`. While the statistical literature abounds with\nsampling methods, Markov Chain Monte Carlo methods are especially well suited\nfor models such as the Restricted Boltzmann Machines (RBM), a specific type of\nEBM.\n\n\nRestricted Boltzmann Machines (RBM)\n+++++++++++++++++++++++++++++++++++\n\nBoltzmann Machines (BMs) are a particular form of log-linear Markov Random Field (MRF),\ni.e., for which the energy function is linear in its free parameters. To make\nthem powerful enough to represent complicated distributions (i.e., go from the\nlimited parametric setting to a non-parametric one), we consider that some of\nthe variables are never observed (they are called hidden). By having more hidden\nvariables (also called hidden units), we can increase the modeling capacity\nof the Boltzmann Machine (BM).\nRestricted Boltzmann Machines further restrict BMs to\nthose without visible-visible and hidden-hidden connections.  A graphical\ndepiction of an RBM is shown below.\n\n.. image:: images/rbm.png\n    :align: center\n\nThe energy function :math:`E(v,h)` of an RBM is defined as:\n\n.. math::\n    :label: rbm_energy\n\n    E(v,h) = - b'v - c'h - h'Wv\n\nwhere :math:`W` represents the weights connecting hidden and visible units and\n:math:`b`, :math:`c` are the offsets of the visible and hidden layers\nrespectively.\n\nThis translates directly to the following free energy formula:\n\n.. math::\n\n  \\mathcal{F}(v)= - b'v - \\sum_i \\log \\sum_{h_i} e^{h_i (c_i + W_i v)}.\n\nBecause of the specific structure of RBMs, visible and hidden units are\nconditionally independent given one-another. Using this property, we can\nwrite:\n\n.. math::\n    p(h|v) &= \\prod_i p(h_i|v) \\\\\n    p(v|h) &= \\prod_j p(v_j|h).\n\n**RBMs with binary units**\n\nIn the commonly studied case of using binary units (where :math:`v_j` and :math:`h_i \\in\n\\{0,1\\}`), we obtain from Eq. :eq:`rbm_energy` and :eq:`energy2`, a probabilistic\nversion of the usual neuron activation function:\n\n.. math::\n  :label: rbm_propup\n\n  P(h_i=1|v) = sigm(c_i + W_i v) \\\\\n\n.. math::\n  :label: rbm_propdown\n\n  P(v_j=1|h) = sigm(b_j + W'_j h)\n\nThe free energy of an RBM with binary units further simplifies to:\n\n.. math::\n  :label: rbm_free_energy\n\n  \\mathcal{F}(v)= - b'v - \\sum_i \\log(1 + e^{(c_i + W_i v)}).\n\n**Update Equations with Binary Units**\n\nCombining Eqs. :eq:`bm_grad` with :eq:`rbm_free_energy`, we obtain the\nfollowing log-likelihood gradients for an RBM with binary units:\n\n.. math::\n    :label: rbm_grad\n\n    - \\frac{\\partial{ \\log p(v)}}{\\partial W_{ij}} &=\n        E_v[p(h_i|v) \\cdot v_j]\n        - v^{(i)}_j \\cdot sigm(W_i \\cdot v^{(i)} + c_i) \\\\\n    -\\frac{\\partial{ \\log p(v)}}{\\partial c_i} &=\n        E_v[p(h_i|v)] - sigm(W_i \\cdot v^{(i)})  \\\\\n    -\\frac{\\partial{ \\log p(v)}}{\\partial b_j} &=\n        E_v[p(v_j|h)] - v^{(i)}_j\n\nFor a more detailed derivation of these equations, we refer the reader to the\nfollowing `page <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/DBNEquations>`_,\nor to section 5 of `Learning Deep Architectures for AI <http://www.iro.umontreal.ca/%7Elisa/publications2/index.php/publications/show/239>`_. We will however not use these formulas, but rather get the gradient using Theano `T.grad`_\nfrom equation :eq:`free_energy_grad`.\n\n\nSampling in an RBM\n++++++++++++++++++\n\nSamples of :math:`p(x)` can be obtained by running a Markov chain to\nconvergence, using Gibbs sampling as the transition operator.\n\nGibbs sampling of the joint of N random variables :math:`S=(S_1, ... , S_N)`\nis done through a sequence of N sampling sub-steps of the form\n:math:`S_i \\sim p(S_i | S_{-i})` where :math:`S_{-i}` contains the :math:`N-1`\nother random variables in :math:`S` excluding :math:`S_i`.\n\nFor RBMs, :math:`S` consists of the set of visible and hidden units. However,\nsince they are conditionally independent, one can perform block Gibbs\nsampling. In this setting, visible units are sampled simultaneously given\nfixed values of the hidden units. Similarly, hidden units are sampled\nsimultaneously given the visibles. A step in the Markov chain is thus taken as\nfollows:\n\n.. math::\n    h^{(n+1)} &\\sim sigm(W'v^{(n)} + c) \\\\\n    v^{(n+1)} &\\sim sigm(W h^{(n+1)} + b),\n\nwhere :math:`h^{(n)}` refers to the set of all hidden units at the n-th step of\nthe Markov chain. What it means is that, for example, :math:`h^{(n+1)}_i` is\nrandomly chosen to be 1 (versus 0) with probability :math:`sigm(W_i'v^{(n)} + c_i)`,\nand similarly,\n:math:`v^{(n+1)}_j` is\nrandomly chosen to be 1 (versus 0) with probability :math:`sigm(W_{.j} h^{(n+1)} + b_j)`.\n\nThis can be illustrated graphically:\n\n.. image:: images/markov_chain.png\n    :align: center\n\nAs :math:`t \\rightarrow \\infty`, samples :math:`(v^{(t)}, h^{(t)})` are\nguaranteed to be accurate samples of :math:`p(v,h)`.\n\nIn theory, each parameter update in the learning process would require running\none such chain to convergence. It is needless to say that doing so would be\nprohibitively expensive. As such, several algorithms have been devised for\nRBMs, in order to efficiently sample from :math:`p(v,h)` during the learning\nprocess.\n\n\nContrastive Divergence (CD-k)\n-----------------------------\n\nContrastive Divergence uses two tricks to speed up the sampling process:\n\n* since we eventually want :math:`p(v) \\approx p_{train}(v)` (the true, underlying\n  distribution of the data), we initialize the Markov chain with a training\n  example (i.e., from a distribution that is expected to be close to :math:`p`,\n  so that the chain will be already close to having converged to its final distribution :math:`p`).\n\n* CD does not wait for the chain to converge. Samples are obtained after only\n  k-steps of Gibbs sampling. In pratice, :math:`k=1` has been shown to work\n  surprisingly well.\n\n\nPersistent CD\n-------------\n\nPersistent CD [Tieleman08]_ uses another approximation for sampling from\n:math:`p(v,h)`.  It relies on a single Markov chain, which has a persistent\nstate (i.e., not restarting a chain for each observed example). For each\nparameter update, we extract new samples by simply running the chain for\nk-steps. The state of the chain is then preserved for subsequent updates.\n\nThe general intuition is that if parameter updates are small enough compared\nto the mixing rate of the chain, the Markov chain should be able to \"catch up\"\nto changes in the model.\n\n\nImplementation\n++++++++++++++\n\nWe construct an ``RBM`` class. The parameters of the network can either be\ninitialized by the constructor or can be passed as arguments. This option is\nuseful when an RBM is used as the building block of a deep network, in which\ncase the weight matrix and the hidden layer bias is shared with the\ncorresponding sigmoidal layer of an MLP network.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nNext step is to define functions which construct the symbolic graph associated\nwith Eqs. :eq:`rbm_propup` - :eq:`rbm_propdown`. The code is as follows:\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.propup\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.sample_h_given_v\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.propdown\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.sample_v_given_h\n\nWe can then use these functions to define the symbolic graph for a Gibbs\nsampling step. We define two functions:\n\n* ``gibbs_vhv`` which performs a step of Gibbs sampling starting from the\n  visible units. As we shall see, this will be useful for sampling from the\n  RBM.\n\n* ``gibbs_hvh`` which performs a step of Gibbs sampling starting from the hidden units.\n  This function will be useful for performing CD and PCD updates.\n\nThe code is as follows:\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.gibbs_hvh\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.gibbs_vhv\n\nNote that we also return the pre-sigmoid\nactivation. To understand why this is so you need to understand a bit about\nhow Theano works. Whenever you compile a Theano function, the computational\ngraph that you pass as input gets optimized for speed and stability. This\nis done by changing several parts of the subgraphs with others. One\nsuch optimization expresses terms of the form log(sigmoid(x)) in terms of\nsoftplus. We need this optimization for the cross-entropy since sigmoid of\nnumbers larger than 30. (or even less then that) turn to 1. and numbers\nsmaller than  -30. turn to 0 which in terms will force theano\nto compute log(0) and therefore we will get either -inf or NaN\nas cost. If the value is expressed in terms of softplus we do\nnot get this undesirable behaviour. This optimization usually works\nfine, but here we have a special case. The sigmoid is applied inside\nthe scan op, while the log is outside. Therefore Theano will only\nsee log(scan(..)) instead of log(sigmoid(..)) and will not apply\nthe wanted optimization. We can not go and replace the sigmoid\nin scan with something else also, because this only needs to be\ndone on the last step. Therefore the easiest and more efficient way\nis to get also the pre-sigmoid activation as an output of scan,\nand apply both the log and sigmoid outside scan such that Theano\ncan catch and optimize the expression.\n\nThe class also has a function that computes the free energy of the model,\nneeded for computing the gradient of the parameters\n(see Eq. :eq:`free_energy_grad`). Note that we also return the pre-sigmoid\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.free_energy\n\nWe then add a ``get_cost_updates`` method, whose purpose is to generate the symbolic\ngradients for CD-k and PCD-k updates.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nNote that ``get_cost_updates`` takes as argument a variable called ``persistent``. This allows us to use the same code to implement both CD and PCD.\nTo use PCD, ``persistent`` should refer to a shared variable which contains the\nstate of the Gibbs chain from the previous iteration.\n\nIf ``persistent`` is ``None``, we initialize the Gibbs chain with the hidden\nsample generated during the positive phase, therefore implementing CD. Once we have established the\nstarting point of the chain, we can then compute the sample at the end of the\nGibbs chain, sample that we need for getting the gradient (see  Eq. :eq:`free_energy_grad`). To do so, we will use the ``scan``\nop provided by Theano, therefore we urge the reader to look it up by following this `link <http://deeplearning.net/software/theano/library/scan.html>`_.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: end-snippet-2\n  :end-before: start-snippet-3\n\nOnce we have the generated the chain we take the sample at the end of the\nchain to get the free energy of the negative phase. Note that the\n``chain_end`` is a symbolical Theano variable expressed in terms of the model\nparameters, and if we would apply ``T.grad`` naively, the function will\ntry to go through the Gibbs chain to get the gradients. This is not what we\nwant (it will mess up our gradients) and therefore we need to indicate to\n``T.grad`` that ``chain_end`` is a constant. We do this by using the argument\n``consider_constant`` of ``T.grad``.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\nFinally, we add to the updates dictionary returned by scan (which contains\nupdates rules for random states of ``theano_rng``) to contain the parameter\nupdates. In the case of PCD, these should also update the shared variable\ncontaining the state of the Gibbs chain.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-4\n  :end-before: end-snippet-4\n\nTracking Progress\n-----------------\n\nRBMs are particularly tricky to train. Because of the partition function\n:math:`Z` of Eq. :eq:`energy1`, we cannot estimate the log-likelihood\n:math:`\\log(P(x))` during training. We therefore have no direct useful metric\nfor choosing the optimal hyperparameters.\n\nSeveral options are available to the user.\n\n**Inspection of Negative Samples**\n\nNegative samples obtained during training can be visualized. As training\nprogresses, we know that the model defined by the RBM becomes closer to the\ntrue underlying distribution, :math:`p_{train}(x)`. Negative samples should thus\nlook like samples from the training set. Obviously bad hyperparameters can be\ndiscarded in this fashion.\n\n**Visual Inspection of Filters**\n\nThe filters learnt by the model can be visualized. This amounts to plotting\nthe weights of each unit as a gray-scale image (after reshaping to a square\nmatrix). Filters should pick out strong features in the data. While it is not\nclear for an arbitrary dataset, what these features should look like, training\non MNIST usually results in filters which act as stroke detectors, while\ntraining on natural images lead to Gabor like filters if trained in\nconjunction with a sparsity criteria.\n\n**Proxies to Likelihood**\n\nOther, more tractable functions can be used as a proxy to the likelihood.  When\ntraining an RBM with PCD, one can use pseudo-likelihood as the proxy.\nPseudo-likelihood (PL) is much less expensive to compute, as it assumes that\nall bits are independent. Therefore,\n\n.. math::\n    PL(x) = \\prod_i P(x_i | x_{-i}) \\text{ and }\\\\\n    \\log PL(x) = \\sum_i \\log P(x_i | x_{-i})\n\nHere :math:`x_{-i}` denotes the set of all bits of :math:`x` except bit\n:math:`i`. The log-PL is therefore the sum of the log-probabilities of each\nbit :math:`x_i`, conditioned on the state of all other bits. For MNIST, this\nwould involve summing over the 784 input dimensions, which remains rather\nexpensive. For this reason, we use the following stochastic approximation to\nlog-PL:\n\n.. math::\n   g = N \\cdot \\log P(x_i | x_{-i}) \\text{, where } i \\sim U(0,N), \\text{, and}\\\\\n   E[ g ] = \\log PL(x)\n\nwhere the expectation is taken over the uniform random choice of index :math:`i`,\nand :math:`N` is the number of visible units. In order to work with binary\nunits, we further introduce the notation :math:`\\tilde{x}_i` to refer to\n:math:`x` with bit-i being flipped (1->0, 0->1). The log-PL for an RBM with binary units is\nthen written as:\n\n.. math::\n    \\log PL(x) &\\approx N \\cdot \\log\n       \\frac {e^{-FE(x)}} {e^{-FE(x)} + e^{-FE(\\tilde{x}_i)}} \\\\\n    &\\approx N \\cdot \\log[ sigm (FE(\\tilde{x}_i) - FE(x)) ]\n\nWe therefore return this cost as well as the RBM updates in the  ``get_cost_updates`` function of the ``RBM`` class.\nNotice that we modify the updates dictionary to increment the\nindex of bit :math:`i`. This will result in bit :math:`i` cycling over all possible\nvalues :math:`\\{0,1,...,N\\}`, from one update to another.\n\nNote that for CD training the cross-entropy cost between the input and the\nreconstruction (the same as the one used for the de-noising autoencoder) is more reliable then the pseudo-loglikelihood. Here is the code we use to\ncompute the pseudo-likelihood:\n\n.. literalinclude:: ../code/rbm.py\n  :pyobject: RBM.get_pseudo_likelihood_cost\n\nMain Loop\n---------\n\nWe now have all the necessary ingredients to start training our network.\n\nBefore going over the training loop however, the reader should familiarize\nhimself with the function ``tile_raster_images`` (see :ref:`how-to-plot`). Since\nRBMs are generative models, we are interested in sampling from them and\nplotting/visualizing these samples. We also want to visualize the filters\n(weights) learnt by the RBM, to gain insights into what the RBM is actually\ndoing. Bear in mind however, that this does not provide the entire story,\nsince we neglect the biases and plot the weights up to a multiplicative\nconstant (weights are converted to values between 0 and 1).\n\nHaving these utility functions, we can start training the RBM and plot/save\nthe filters after each training epoch.  We train the RBM using PCD, as it has\nbeen shown to lead to a better generative model ([Tieleman08]_).\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-5\n  :end-before: end-snippet-5\n\nOnce the RBM is trained, we can then use the ``gibbs_vhv`` function to implement\nthe Gibbs chain required for sampling. We initialize the Gibbs chain starting\nfrom test examples (although we could as well pick it from the training set)\nin order to speed up convergence and avoid problems with random\ninitialization. We again use Theano's ``scan`` op to do 1000 steps before\neach plotting.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-6\n  :end-before: end-snippet-6\n\nNext we create the 20 persistent chains in parallel to get our\nsamples. To do so, we compile a theano function which performs one Gibbs step\nand updates the state of the persistent chain with the new visible sample. We\napply this function iteratively for a large number of steps, plotting the\nsamples at every 1000 steps.\n\n.. literalinclude:: ../code/rbm.py\n  :start-after: start-snippet-7\n  :end-before: end-snippet-7\n\nResults\n+++++++\n\nWe ran the code with PCD-15, learning rate of 0.1 and a batch size of 20, for\n15 epochs. Training the model takes 122.466 minutes on a Intel Xeon E5430 @\n2.66GHz CPU, with a single-threaded GotoBLAS.\n\nThe output was the following:\n\n.. code-block:: bash\n\n    ... loading data\n    Training epoch 0, cost is  -90.6507246003\n    Training epoch 1, cost is  -81.235857373\n    Training epoch 2, cost is  -74.9120966945\n    Training epoch 3, cost is  -73.0213216101\n    Training epoch 4, cost is  -68.4098570497\n    Training epoch 5, cost is  -63.2693021647\n    Training epoch 6, cost is  -65.99578971\n    Training epoch 7, cost is  -68.1236650015\n    Training epoch 8, cost is  -68.3207365087\n    Training epoch 9, cost is  -64.2949797113\n    Training epoch 10, cost is  -61.5194867893\n    Training epoch 11, cost is  -61.6539369402\n    Training epoch 12, cost is  -63.5465278086\n    Training epoch 13, cost is  -63.3787093527\n    Training epoch 14, cost is  -62.755739271\n    Training took 122.466000 minutes\n     ... plotting sample  0\n     ... plotting sample  1\n     ... plotting sample  2\n     ... plotting sample  3\n     ... plotting sample  4\n     ... plotting sample  5\n     ... plotting sample  6\n     ... plotting sample  7\n     ... plotting sample  8\n     ... plotting sample  9\n\nThe pictures below show the filters after 15 epochs :\n\n.. figure:: images/filters_at_epoch_14.png\n    :align: center\n\n    Filters obtained after 15 epochs.\n\nHere are the samples generated by the RBM after training. Each row\nrepresents a mini-batch of negative particles (samples from independent Gibbs\nchains). 1000 steps of Gibbs sampling were taken between each of those rows.\n\n.. figure:: images/samples.png\n    :align: center\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/references.txt",
    "content": ".. _references:\n\n==========\nReferences\n==========\n\n.. [Bengio07] Y. Bengio, P. Lamblin, D. Popovici and H. Larochelle, `Greedy Layer-Wise Training of Deep Networks <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/190>`_, in Advances in Neural Information Processing Systems 19 (NIPS'06), pages  153-160, MIT Press 2007.\n\n.. [Bengio09] Y. Bengio, `Learning deep architectures for AI <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/239>`_, Foundations and Trends in Machine Learning 1(2) pages 1-127.\n\n.. [BengioDelalleau09] Y. Bengio, O. Delalleau, Justifying and Generalizing Contrastive Divergence (2009), Neural Computation, 21(6): 1601-1621.\n\n.. [BoulangerLewandowski12] N Boulanger-Lewandowski, Y. Bengio and P. Vincent, `Modeling Temporal Dependencies in High-Dimensional Sequences: Application to Polyphonic Music Generation and Transcription <http://www-etud.iro.umontreal.ca/~boulanni/icml2012>`_, in Proceedings of the 29th International Conference on Machine Learning (ICML), 2012.\n\n.. [Fukushima] Fukushima, K. (1980). Neocognitron: A self-organizing neural network model for a mechanism of pattern recognition unaffected by shift in position. Biological Cybernetics, 36, 193–202.\n\n.. [Hinton06] G.E. Hinton and R.R. Salakhutdinov, `Reducing the Dimensionality of Data with Neural Networks <http://www.cs.toronto.edu/~rsalakhu/papers/science.pdf>`_, Science, 28 July 2006, Vol. 313. no. 5786, pp. 504 - 507.\n\n.. [Hinton07] G.E. Hinton, S. Osindero, and Y. Teh, \"A fast learning algorithm for deep belief nets\", Neural Computation, vol 18, 2006\n\n.. [Hubel68] Hubel, D. and Wiesel, T. (1968). Receptive fields and functional architecture of monkey striate cortex. Journal of Physiology (London), 195, 215–243.\n\n.. [LeCun98] LeCun, Y., Bottou, L., Bengio, Y., and Haffner, P. (1998d).  Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11), 2278–2324.\n\n.. [Lee08] H. Lee, C. Ekanadham, and A.Y. Ng., `Sparse deep belief net model for visual area V2 <http://www.stanford.edu/~hllee/nips07-sparseDBN.pdf>`_, in Advances in Neural Information Processing Systems (NIPS) 20, 2008.\n\n.. [Lee09] H. Lee, R. Grosse, R. Ranganath, and A.Y. Ng, \"Convolutional deep belief networks for scalable unsupervised learning of hierarchical representations.\", ICML 2009\n\n.. [Ranzato10] M. Ranzato, A. Krizhevsky, G. Hinton, \"Factored 3-Way Restricted Boltzmann Machines for Modeling Natural Images\". Proc. of the 13-th International Conference on Artificial Intelligence and Statistics (AISTATS 2010), Italy, 2010\n\n.. [Ranzato07] M.A. Ranzato, C. Poultney, S. Chopra and Y. LeCun, in J. Platt et al., `Efficient Learning of Sparse Representations with an Energy-Based Model <http://yann.lecun.com/exdb/publis/pdf/ranzato-06.pdf>`_, Advances in Neural Information Processing Systems (NIPS 2006), MIT Press, 2007.\n\n.. [Serre07] Serre, T., Wolf, L., Bileschi, S., and Riesenhuber, M. (2007).  Robust object recog- nition with cortex-like mechanisms. IEEE Trans. Pattern Anal. Mach. Intell., 29(3), 411–426. Member-Poggio, Tomaso.\n\n.. [Vincent08] P. Vincent, H. Larochelle Y. Bengio and P.A. Manzagol, `Extracting and Composing Robust Features with Denoising Autoencoders <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/217>`_, Proceedings of the Twenty-fifth International Conference on Machine Learning (ICML'08), pages 1096 - 1103, ACM, 2008.\n\n.. [Tieleman08] T. Tieleman, Training restricted boltzmann machines using approximations to the likelihood gradient, ICML 2008.\n\n.. [Xavier10] Y. Bengio, X. Glorot, Understanding the difficulty of training deep feedforward neuralnetworks, AISTATS 2010\n"
  },
  {
    "path": "DeepLearningTutorials/doc/rnnrbm.txt",
    "content": ".. _rnnrbm:\n\nModeling and generating sequences of polyphonic music with the RNN-RBM\n========================================================================\n\n.. note::\n  This tutorial demonstrates a basic implementation of the RNN-RBM as described in [BoulangerLewandowski12]_\n  (`pdf <http://www-etud.iro.umontreal.ca/~boulanni/ICML2012.pdf>`_).\n  We assume the reader is familiar with\n  `recurrent neural networks using the scan op <http://deeplearning.net/software/theano/library/scan.html>`_\n  and `restricted Boltzmann machines (RBM) <rbm.html>`_.\n\n.. note::\n  The code for this section is available for download here: `rnnrbm.py <code/rnnrbm.py>`_.\n\n  You will need the modified `Python MIDI package (GPL license) <http://www.iro.umontreal.ca/~lisa/deep/midi.zip>`_ in your ``$PYTHONPATH`` or in the working directory in order to convert MIDI files to and from piano-rolls.\n  The script also assumes that the content of the `Nottingham Database of folk tunes <http://www.iro.umontreal.ca/~lisa/deep/data/Nottingham.zip>`_ has been extracted in the ``../data`` directory.\n  Alternative MIDI datasets are available `here <http://www-etud.iro.umontreal.ca/~boulanni/icml2012>`_.\n  \n  Note that both dependencies above can be setup automatically by running the ``download.sh`` script in the ``../data`` directory.\n\n.. caution::\n  Need Theano 0.6 or more recent.\n\n\nThe RNN-RBM\n+++++++++++++++++++++++++\n\nThe RNN-RBM is an energy-based model for density estimation of temporal sequences, where the feature vector :math:`v^{(t)}` at time step :math:`t` may be high-dimensional.\nIt allows to describe multimodal conditional distributions of :math:`v^{(t)}|\\mathcal A^{(t)}`, where :math:`\\mathcal A^{(t)}\\equiv \\{v_\\tau|\\tau<t\\}` denotes the *sequence history* at time :math:`t`, via a series of conditional RBMs (one a each time step) whose parameters :math:`b_v^{(t)},b_h^{(t)}` depend on the output of a deterministic RNN with hidden units :math:`u^{(t)}`:\n\n.. math::\n  :label: bv_t\n\n  b_v^{(t)} = b_v + W_{uv} u^{(t-1)}\n\n.. math::\n  :label: bh_t\n\n  b_h^{(t)} = b_h + W_{uh} u^{(t-1)}\n\nand the single-layer RNN recurrence relation is defined by:\n\n.. math::\n  :label: u_t\n\n  u^{(t)} = \\tanh (b_u + W_{uu} u^{(t-1)} + W_{vu} v^{(t)})\n\nThe resulting model is unrolled in time in the following figure:\n\n.. image:: images/rnnrbm.png\n    :align: center\n\nThe overall probability distribution is given by the sum over the :math:`T` time steps in a given sequence:\n\n.. math::\n  :label: prob_rnnrbm\n\n  P(\\{v^{(t)}\\}) = \\sum_{t=1}^T P(v^{(t)} | \\mathcal A^{(t)})\n\nwhere the right-hand side multiplicand is the marginalized probability of the :math:`t^\\mathrm{th}` RBM.\n\nNote that for clarity of the implementation, contrarily to [BoulangerLewandowski12]_, we use the obvious naming convention for weight matrices and we use :math:`u^{(t)}` instead of :math:`\\hat h^{(t)}` for the recurrent hidden units.\n\n\n\nImplementation\n++++++++++++++\n\nWe wish to construct two Theano functions: one to train the RNN-RBM, and one to generate sample sequences from it.\n\nFor *training*, i.e. given :math:`\\{v^{(t)}\\}`, the RNN hidden state :math:`\\{u^{(t)}\\}` and the associated :math:`\\{b_v^{(t)}, b_h^{(t)}\\}` parameters are deterministic and can be readily computed for each training sequence.\nA stochastic gradient descent (SGD) update on the parameters can then be estimated via contrastive divergence (CD) on the individual time steps of a sequence in the same way that individual training examples are treated in a mini-batch for regular RBMs.\n\n*Sequence generation* is similar except that the :math:`v^{(t)}` must be sampled sequentially at each time step with a separate (non-batch) Gibbs chain before being passed down to the recurrence and the sequence history.\n\n\nThe RBM layer\n---------------\n\nThe ``build_rbm`` function shown below builds a Gibbs chain from an input mini-batch (a binary matrix) via the CD approximation.\nNote that it also supports a single frame (a binary vector) in the non-batch case.\n\n.. literalinclude:: ../code/rnnrbm.py\n  :pyobject: build_rbm\n\nThe RNN layer\n---------------\n\nThe ``build_rnnrbm`` function defines the RNN recurrence relation to obtain the RBM parameters; the recurrence function is flexible enough to serve both in the training scenario where :math:`v^{(t)}` is given and the \"batch\" RBM is constructed at the end on the whole sequence at once, and in the generation scenario where :math:`v^{(t)}` is sampled separately at each time step using the Gibbs chain defined above.\n\n\n.. literalinclude:: ../code/rnnrbm.py\n  :pyobject: build_rnnrbm\n\nPutting it all together\n---------------------------\n\nWe now have all the necessary ingredients to start training our network on real symbolic sequences of polyphonic music.\n\n.. literalinclude:: ../code/rnnrbm.py\n  :pyobject: RnnRbm\n\nResults\n++++++++\n\nWe ran the code on the Nottingham database for 200 epochs; training took approximately 24 hours.\n\nThe output was the following:\n\n.. code-block:: text\n\n  Epoch 1/200 -15.0308940028\n  Epoch 2/200 -10.4892606673\n  Epoch 3/200 -10.2394696138\n  Epoch 4/200 -10.1431669994\n  Epoch 5/200 -9.7005382843\n  Epoch 6/200 -8.5985647524\n  Epoch 7/200 -8.35115428534\n  Epoch 8/200 -8.26453580552\n  Epoch 9/200 -8.21208991542\n  Epoch 10/200 -8.16847274143\n\n  ... truncated for brevity ...\n\n  Epoch 190/200 -4.74799179994\n  Epoch 191/200 -4.73488515216\n  Epoch 192/200 -4.7326138489\n  Epoch 193/200 -4.73841636884\n  Epoch 194/200 -4.70255511452\n  Epoch 195/200 -4.71872634914\n  Epoch 196/200 -4.7276415885\n  Epoch 197/200 -4.73497644728\n  Epoch 198/200 -inf\n  Epoch 199/200 -4.75554987143\n  Epoch 200/200 -4.72591935412\n\n\n\nThe figures below show the piano-rolls of two sample sequences and we provide the corresponding MIDI files:\n\n.. figure:: images/sample1.png\n  :scale: 60%\n\n  Listen to `sample1.mid <http://www-etud.iro.umontreal.ca/~boulanni/sample1.mid>`_\n\n.. figure:: images/sample2.png\n  :scale: 60%\n\n  Listen to `sample2.mid <http://www-etud.iro.umontreal.ca/~boulanni/sample2.mid>`_\n\n\nHow to improve this code\n+++++++++++++++++++++++++\n\nThe code shown in this tutorial is a stripped-down version that can be improved in the following ways:\n\n* Preprocessing: transposing the sequences in a common tonality (e.g. C major / minor) and normalizing the tempo in beats (quarternotes) per minute can have the most effect on the generative quality of the model.\n* Pretraining techniques: initialize the :math:`W,b_v,b_h` parameters with independent RBMs with fully shuffled frames (i.e. :math:`W_{uh}=W_{uv}=W_{uu}=W_{vu}=0`); initialize the :math:`W_{uv},W_{uu},W_{vu},b_u` parameters of the RNN with the auxiliary cross-entropy objective via either SGD or, preferably, Hessian-free optimization [BoulangerLewandowski12]_.\n* Optimization techniques: gradient clipping, Nesterov momentum and the use of NADE for conditional density estimation.\n* Hyperparameter search: learning rate (separately for the RBM and RNN parts), learning rate schedules, batch size, number of hidden units (recurrent and RBM), momentum coefficient, momentum schedule, Gibbs chain length :math:`k` and early stopping.\n* Learn the initial condition :math:`u^{(0)}` as a model parameter.\n\n\nA few samples generated with code including these features are available here: `sequences.zip <http://www-etud.iro.umontreal.ca/~boulanni/sequences.zip>`_.\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/rnnslu.txt",
    "content": ".. _rnnslu:\n\nRecurrent Neural Networks with Word Embeddings\n**********************************************\n\nSummary\n+++++++\n\nIn this tutorial, you will learn how to:\n\n* learn **Word Embeddings** \n* using **Recurrent Neural Networks** architectures\n* with **Context Windows** \n\nin order to perform Semantic Parsing / Slot-Filling (Spoken Language Understanding)\n\nCode - Citations - Contact\n++++++++++++++++++++++++++\n\nCode\n====\n\nDirectly running experiments is also possible using this `github repository <https://github.com/mesnilgr/is13>`_.\n\nPapers\n======\n\nIf you use this tutorial, cite the following papers:\n\n* `[pdf] <http://www.iro.umontreal.ca/~lisa/pointeurs/RNNSpokenLanguage2013.pdf>`_ Grégoire Mesnil, Xiaodong He, Li Deng and Yoshua Bengio. Investigation of Recurrent-Neural-Network Architectures and Learning Methods for Spoken Language Understanding. Interspeech, 2013.\n\n* `[pdf] <http://research.microsoft.com/en-us/people/gokhant/0000019.pdf>`_ Gokhan Tur, Dilek Hakkani-Tur and Larry Heck. What is left to be understood in ATIS?\n\n* `[pdf] <http://lia.univ-avignon.fr/fileadmin/documents/Users/Intranet/fich_art/997-Interspeech2007.pdf>`_ Christian Raymond and Giuseppe Riccardi. Generative and discriminative algorithms for spoken language understanding. Interspeech, 2007.\n\n* `[pdf] <http://www.iro.umontreal.ca/~lisa/pointeurs/nips2012_deep_workshop_theano_final.pdf>`_ Bastien, Frédéric, Lamblin, Pascal, Pascanu, Razvan, Bergstra, James, Goodfellow, Ian, Bergeron, Arnaud, Bouchard, Nicolas, and Bengio, Yoshua. Theano: new features and speed improvements. NIPS Workshop on Deep Learning and Unsupervised Feature Learning, 2012.\n\n* `[pdf] <http://www.iro.umontreal.ca/~lisa/pointeurs/theano_scipy2010.pdf>`_ Bergstra, James, Breuleux, Olivier, Bastien, Frédéric, Lamblin, Pascal, Pascanu, Razvan, Desjardins, Guillaume, Turian, Joseph, Warde-Farley, David, and Bengio, Yoshua. Theano: a CPU and GPU math expression compiler. In Proceedings of the Python for Scientific Computing Conference (SciPy), June 2010.\n\nThank you!\n\nContact\n=======\n\nPlease email to `Grégoire Mesnil <http://www-etud.iro.umontreal.ca/~mesnilgr/>`_ for any\nproblem report or feedback. We will be glad to hear from you.\n\nTask\n++++\n\nThe Slot-Filling (Spoken Language Understanding) consists in assigning a label\nto each word given a sentence. It's a classification task.\n\nDataset\n+++++++\n\nAn old and small benchmark for this task is the ATIS (Airline Travel Information\nSystem) dataset collected by DARPA. Here is a sentence (or utterance) example using the\n`Inside Outside Beginning (IOB)\n<http://en.wikipedia.org/wiki/Inside_Outside_Beginning>`_ representation.\n\n+--------------------+------+--------+-----+--------+---+-------+-------+--------+\n| **Input** (words)  | show | flights| from| Boston | to| New   | York  | today  |\n+--------------------+------+--------+-----+--------+---+-------+-------+--------+\n| **Output** (labels)| O    | O      | O   | B-dept | O | B-arr | I-arr | B-date |\n+--------------------+------+--------+-----+--------+---+-------+-------+--------+\n\nThe ATIS offical split contains 4,978/893 sentences for a total of 56,590/9,198\nwords (average sentence length is 15) in the train/test set.  The number of\nclasses (different slots) is 128 including the O label (NULL).\n\nAs `Microsoft Research people\n<http://research.microsoft.com/en-us/um/people/gzweig/Pubs/Interspeech2013RNNLU.pdf>`_,\nwe deal with unseen words in the test set by marking any words with only one\nsingle occurrence in the training set as ``<UNK>`` and use this token to\nrepresent those unseen words in the test set. As `Ronan Collobert and colleagues\n<http://ronan.collobert.com/pub/matos/2011_nlp_jmlr.pdf>`_, we converted\nsequences of numbers with the string ``DIGIT`` i.e. ``1984`` is converted to\n``DIGITDIGITDIGITDIGIT``. \n\nWe split the official train set into a training and validation set that contain\nrespectively 80% and 20% of the official training sentences. `Significant\nperformance improvement difference has to be greater than 0.6% in F1 measure at\nthe 95% level due to the small size of the dataset\n<http://research.microsoft.com/en-us/um/people/gzweig/Pubs/Interspeech2013RNNLU.pdf>`_.\nFor evaluation purpose, experiments have to report the following metrics:\n\n* `Precision <http://en.wikipedia.org/wiki/Precision_(information_retrieval)>`_ \n* `Recall <http://en.wikipedia.org/wiki/Recall_(information_retrieval)>`_\n* `F1 score <http://en.wikipedia.org/wiki/F1_score>`_\n\nWe will use the `conlleval\n<http://www.cnts.ua.ac.be/conll2000/chunking/conlleval.txt>`_ PERL script to\nmeasure the performance of our models.\n\nRecurrent Neural Network Model\n++++++++++++++++++++++++++++++\n\nRaw input encoding\n==================\n\nA token corresponds to a word. Each token in the ATIS vocabulary is associated to an index. Each sentence is a\narray of indexes (``int32``). Then, each set (train, valid, test) is a list of arrays of indexes. A python\ndictionnary is defined for mapping the space of indexes to the space of words.\n    \n    >>> sentence\n    array([383, 189,  13, 193, 208, 307, 195, 502, 260, 539,\n            7,  60,  72, 8, 350, 384], dtype=int32)\n    >>> map(lambda x: index2word[x], sentence)\n    ['please', 'find', 'a', 'flight', 'from', 'miami', 'florida',\n            'to', 'las', 'vegas', '<UNK>', 'arriving', 'before', 'DIGIT', \"o'clock\", 'pm']\n\nSame thing for labels corresponding to this particular sentence.\n\n    >>> labels\n    array([126, 126, 126, 126, 126,  48,  50, 126,  78, 123,  81, 126,  15,\n            14,  89,  89], dtype=int32)\n    >>> map(lambda x: index2label[x], labels)\n    ['O', 'O', 'O', 'O', 'O', 'B-fromloc.city_name', 'B-fromloc.state_name',\n            'O', 'B-toloc.city_name', 'I-toloc.city_name', 'B-toloc.state_name',\n            'O', 'B-arrive_time.time_relative', 'B-arrive_time.time',\n            'I-arrive_time.time', 'I-arrive_time.time']\n\nContext window\n==============\n\nGiven a sentence i.e. an array of indexes, and a window size i.e. 1,3,5,..., we\nneed to convert each word in the sentence to a context window surrounding this\nparticular word. In details, we have:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-1\n  :end-before: end-snippet-1\n\nThe index ``-1`` corresponds to the ``PADDING`` index we insert at the\nbeginning/end of the sentence.\n\nHere is a sample:\n\n    >>> x\n    array([0, 1, 2, 3, 4], dtype=int32)\n    >>> contextwin(x, 3) \n    [[-1, 0, 1],\n     [ 0, 1, 2],\n     [ 1, 2, 3],\n     [ 2, 3, 4],\n     [ 3, 4,-1]]\n    >>> contextwin(x, 7) \n    [[-1, -1, -1, 0, 1, 2, 3],\n     [-1, -1,  0, 1, 2, 3, 4],\n     [-1,  0,  1, 2, 3, 4,-1],\n     [ 0,  1,  2, 3, 4,-1,-1],\n     [ 1,  2,  3, 4,-1,-1,-1]]\n\nTo summarize, we started with an array of indexes and ended with a matrix of\nindexes. Each line corresponds to the context window surrounding this word.\n\nWord embeddings\n=================\n\nOnce we have the sentence converted to context windows i.e. a matrix of indexes, we have to associate\nthese indexes to the embeddings (real-valued vector associated to each word).\nUsing Theano, it gives::\n\n    import theano, numpy\n    from theano import tensor as T\n\n    # nv :: size of our vocabulary\n    # de :: dimension of the embedding space\n    # cs :: context window size \n    nv, de, cs = 1000, 50, 5\n\n    embeddings = theano.shared(0.2 * numpy.random.uniform(-1.0, 1.0, \\\n        (nv+1, de)).astype(theano.config.floatX)) # add one for PADDING at the end\n\n    idxs = T.imatrix() # as many columns as words in the context window and as many lines as words in the sentence\n    x    = self.emb[idxs].reshape((idxs.shape[0], de*cs))\n\nThe x symbolic variable corresponds to a matrix of shape (number of words in the\nsentences, dimension of the embedding space X context window size).\n\nLet's compile a theano function to do so\n    \n    >>> sample\n    array([0, 1, 2, 3, 4], dtype=int32)\n    >>> csample = contextwin(sample, 7)\n    [[-1, -1, -1, 0, 1, 2, 3],\n     [-1, -1,  0, 1, 2, 3, 4],\n     [-1,  0,  1, 2, 3, 4,-1],\n     [ 0,  1,  2, 3, 4,-1,-1],\n     [ 1,  2,  3, 4,-1,-1,-1]]\n    >>> f = theano.function(inputs=[idxs], outputs=x)\n    >>> f(csample)\n    array([[-0.08088442,  0.08458307,  0.05064092, ...,  0.06876887,\n            -0.06648078, -0.15192257],\n           [-0.08088442,  0.08458307,  0.05064092, ...,  0.11192625,\n             0.08745284,  0.04381778],\n           [-0.08088442,  0.08458307,  0.05064092, ..., -0.00937143,\n             0.10804889,  0.1247109 ],\n           [ 0.11038255, -0.10563177, -0.18760249, ..., -0.00937143,\n             0.10804889,  0.1247109 ],\n           [ 0.18738101,  0.14727569, -0.069544  , ..., -0.00937143,\n             0.10804889,  0.1247109 ]], dtype=float32)\n    >>> f(csample).shape                                                                                                                                                                \n    (5, 350)\n\n\nWe now have a sequence (of length 5 which is corresponds to the length of the\nsentence) of **context window word embeddings** which is easy to feed to a simple\nrecurrent neural network to iterate with.\n \nElman recurrent neural network\n==============================\n\nThe followin (Elman) recurrent neural network (E-RNN) takes as input the current input\n(time ``t``) and the previous hiddent state (time ``t-1``). Then it iterates.\n\nIn the previous section, we processed the input to fit this\nsequential/temporal structure.  It consists in a matrix where the row ``0`` corresponds to\nthe time step ``t=0``, the row ``1`` corresponds to the time step  ``t=1``, etc.\n\nThe **parameters** of the E-RNN to be learned are:\n\n* the word embeddings (real-valued matrix) \n* the initial hidden state (real-value vector)\n* two matrices for the linear projection of the input ``t`` and the previous hidden layer state ``t-1``\n* (optionnal) bias. `Recommendation <http://en.wikipedia.org/wiki/Occam's_razor>`_: don't use it.\n* softmax classification layer on top\n\nThe **hyperparameters** define the whole architecture:\n\n* dimension of the word embedding\n* size of the vocabulary\n* number of hidden units\n* number of classes\n* random seed + way to initialize the model\n\nIt gives the following code:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-2\n  :end-before: end-snippet-2\n\nThen we integrate the way to build the input from the embedding matrix:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-3\n  :end-before: end-snippet-3\n\nWe use the scan operator to construct the recursion, works like a charm:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-4\n  :end-before: end-snippet-4\n\nTheano will then compute all the gradients automatically to maximize the log-likelihood:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-5\n  :end-before: end-snippet-5\n\nNext compile those functions:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-6\n  :end-before: end-snippet-6\n\nWe keep the word embeddings on the unit sphere by normalizing them after each update:\n\n.. literalinclude:: ../code/rnnslu.py\n  :start-after: start-snippet-7\n  :end-before: end-snippet-7\n\nAnd that's it!\n\nEvaluation\n++++++++++\n\nWith the previous defined functions, you can compare the predicted labels with\nthe true labels and compute some metrics. In this `repo\n<https://github.com/mesnilgr/is13>`_, we build a wrapper around the `conlleval\n<http://www.cnts.ua.ac.be/conll2000/chunking/conlleval.txt>`_ PERL script.\nIt's not trivial to compute those metrics due to the `Inside Outside Beginning\n(IOB) <http://en.wikipedia.org/wiki/Inside_Outside_Beginning>`_ representation\ni.e. a prediction is considered correct if the word-beginnin **and** the\nword-inside **and** the word-outside predictions are **all** correct.\nNote that the extension is `txt` and you will have to change it to `pl`.\n\nTraining\n++++++++\n\nUpdates\n=======\n\nFor stochastic gradient descent (SGD) update, we consider the whole sentence as a mini-batch\nand perform one update per sentence. It is possible to perform a pure SGD (contrary to mini-batch)\nwhere the update is done on only one single word at a time. \n\nAfter each iteration/update, we normalize the word embeddings to keep them on a unit sphere.\n\nStopping Criterion\n==================\n\nEarly-stopping on a validation set is our regularization technique:\nthe training is run for a given number of epochs (a single pass through the\nwhole dataset) and keep the best model along with respect to the F1 score\ncomputed on the validation set after each epoch.\n\nHyper-Parameter Selection\n=========================\n\nAlthough there is interesting research/`code\n<https://github.com/JasperSnoek/spearmint>`_ on the topic of automatic\nhyper-parameter selection, we use the `KISS\n<http://en.wikipedia.org/wiki/KISS_principle>`_ random search.\n\nThe following intervals can give you some starting point:\n\n* learning rate : uniform([0.05,0.01])\n* window size : random value from {3,...,19}\n* number of hidden units : random value from {100,200}\n* embedding dimension : random value from {50,100}\n\nRunning the Code\n++++++++++++++++\n\nAfter downloading the data using `download.sh`, the user can then run the code by calling:\n\n.. code-block:: bash\n\n    python code/rnnslu.py\n\n    ('NEW BEST: epoch', 25, 'valid F1', 96.84, 'best test F1', 93.79)\n    [learning] epoch 26 >> 100.00% completed in 28.76 (sec) <<\n    [learning] epoch 27 >> 100.00% completed in 28.76 (sec) <<\n    ...\n    ('BEST RESULT: epoch', 57, 'valid F1', 97.23, 'best test F1', 94.2, 'with the model', 'rnnslu')\n\nTiming\n======\n\nRunning experiments on ATIS using this `repository <https://github.com/mesnilgr/is13>`_ \nwill run one epoch in less than 40 seconds on i7 CPU 950 @ 3.07GHz using less than 200 Mo of RAM::\n\n    [learning] epoch 0 >> 100.00% completed in 34.48 (sec) <<\n\nAfter a few epochs, you obtain decent performance **94.48 % of F1 score**.::\n\n    NEW BEST: epoch 28 valid F1 96.61 best test F1 94.19\n    NEW BEST: epoch 29 valid F1 96.63 best test F1 94.42\n    [learning] epoch 30 >> 100.00% completed in 35.04 (sec) <<\n    [learning] epoch 31 >> 100.00% completed in 34.80 (sec) <<\n    [...]\n    NEW BEST: epoch 40 valid F1 97.25 best test F1 94.34\n    [learning] epoch 41 >> 100.00% completed in 35.18 (sec) <<\n    NEW BEST: epoch 42 valid F1 97.33 best test F1 94.48\n    [learning] epoch 43 >> 100.00% completed in 35.39 (sec) <<\n    [learning] epoch 44 >> 100.00% completed in 35.31 (sec) <<\n    [...]\n\nWord Embedding Nearest Neighbors\n================================\n\nWe can check the k-nearest neighbors of the learned embeddings. L2 and\ncosine distance gave the same results so we plot them for the cosine distance.\n\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|**atlanta**                   |**back**                      |**ap80**                      |**but**                       |**aircraft**                  |**business**                  |**a**                         |**august**                    |**actually**                  |**cheap**                     |\n+==============================+==============================+==============================+==============================+==============================+==============================+==============================+==============================+==============================+==============================+\n|phoenix                       |live                          |ap57                          |if                            |plane                         |coach                         |people                        |september                     |provide                       |weekday                       |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|denver                        |lives                         |ap                            |up                            |service                       |first                         |do                            |january                       |prices                        |weekdays                      |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|tacoma                        |both                          |connections                   |a                             |airplane                      |fourth                        |but                           |june                          |stop                          |am                            |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|columbus                      |how                           |tomorrow                      |now                           |seating                       |thrift                        |numbers                       |december                      |number                        |early                         |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|seattle                       |me                            |before                        |amount                        |stand                         |tenth                         |abbreviation                  |november                      |flight                        |sfo                           |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|minneapolis                   |out                           |earliest                      |more                          |that                          |second                        |if                            |april                         |there                         |milwaukee                     |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|pittsburgh                    |other                         |connect                       |abbreviation                  |on                            |fifth                         |up                            |july                          |serving                       |jfk                           |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|ontario                       |plane                         |thrift                        |restrictions                  |turboprop                     |third                         |serve                         |jfk                           |thank                         |shortest                      |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|montreal                      |service                       |coach                         |mean                          |mean                          |twelfth                       |database                      |october                       |ticket                        |bwi                           |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n|philadelphia                  |fare                          |today                         |interested                    |amount                        |sixth                         |passengers                    |may                           |are                           |lastest                       |\n+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+------------------------------+\n\nAs you can judge, the limited size of the vocabulary (about 500 words) gives us mitigated\nperformance. According to human judgement: some are good, some are bad.\n\n\n"
  },
  {
    "path": "DeepLearningTutorials/doc/scripts/docgen.py",
    "content": "from __future__ import print_function\nimport sys\nimport os\nimport shutil\n\nimport getopt\nfrom collections import defaultdict\n\nif __name__ == '__main__':\n\n    throot = \"/\".join(sys.path[0].split(\"/\")[:-2])\n\n    options = defaultdict(bool)\n    output_arg = getopt.getopt(sys.argv[1:], 'o:', ['rst', 'help', 'nopdf'])[0]\n    options.update(dict([x, y or True] for x, y in output_arg))\n    if options['--help']:\n        print('Usage: %s [OPTIONS]' % sys.argv[0])\n        print('  -o <dir>: output the html files in the specified dir')\n        print('  --rst: only compile the doc (requires sphinx)')\n        print('  --nopdf: do not produce a PDF file from the doc, only HTML')\n        print('  --help: this help')\n        sys.exit(0)\n\n    options['--all'] = not bool(options['--rst'])\n\n    def mkdir(path):\n        try:\n            os.mkdir(path)\n        except OSError:\n            pass\n\n    outdir = options['-o'] or (throot + '/html')\n    mkdir(outdir)\n    os.chdir(outdir)\n    mkdir(\"doc\")\n\n    # Make sure the appropriate 'deeplearning' directory is in the PYTHONPATH\n    pythonpath = os.environ.get('PYTHONPATH', '')\n    pythonpath = throot + ':' + pythonpath\n    os.environ['PYTHONPATH'] = pythonpath\n\n    if options['--all'] or options['--rst']:\n        import sphinx\n        sys.path[0:0] = [os.path.join(throot, 'doc')]\n        sphinx.main(['', '-E', os.path.join(throot, 'doc'), '.'])\n\n        if not options['--nopdf']:\n            # Generate latex file in a temp directory\n            import tempfile\n            workdir = tempfile.mkdtemp()\n            sphinx.main(['', '-E', '-b', 'latex',\n                         os.path.join(throot, 'doc'), workdir])\n            # Compile to PDF\n            os.chdir(workdir)\n            os.system('make')\n            try:\n                shutil.copy(os.path.join(workdir, 'deeplearning.pdf'), outdir)\n                os.chdir(outdir)\n                shutil.rmtree(workdir)\n            except OSError as e:\n                print('OSError:', e)\n            except IOError as e:\n                print('IOError:', e)\n"
  },
  {
    "path": "DeepLearningTutorials/doc/utilities.txt",
    "content": "=============\nMiscellaneous\n=============\n\n.. _how-to-plot:\n\nPlotting Samples and Filters\n++++++++++++++++++++++++++++\n\n.. note::\n    The code for this section is available for download `here`_.\n\n.. _here: http://deeplearning.net/tutorial/code/utils.py\n\n\nTo plot a sample, what we need to do is to take the visible units, which\nare a flattened image (there is no 2D structure to the visible units,\njust a 1D string of unit activations) and reshape it into a 2D image. The order in\nwhich the points from the 1D array go into the 2D image is given by the\norder in which the inital MNIST images where converted into a 1D array.\nLucky for us this is just a call of the ``numpy.reshape`` function.\n\nPlotting the weights is a bit more tricky. We have ``n_hidden`` hidden\nunits, each of them corresponding to a column of the weight matrix. A\ncolumn has the same shape as the visible, where the weight corresponding\nto the connection with visible unit `j` is at position `j`. Therefore,\nif we reshape every such column, using ``numpy.reshape``, we get a\nfilter image that tells us how this hidden unit is influenced by\nthe input image.\n\nWe need a utility function that takes a minibatch, or the weight matrix,\nand converts each row ( for the weight matrix we do a transpose ) into a\n2D image and then tile these images together.  Once we converted the\nminibatch or the weights in this image of tiles, we can use PIL to plot\nand save. `PIL <http://www.pythonware.com/products/pil/>`_ is a standard\npython libarary to deal with images.\n\nTiling minibatches together is done for us by the\n``tile_raster_image`` function which we provide here.\n\n.. code-block:: python\n\n\n  def scale_to_unit_interval(ndar, eps=1e-8):\n    \"\"\" Scales all values in the ndarray ndar to be between 0 and 1 \"\"\"\n    ndar = ndar.copy()\n    ndar -= ndar.min()\n    ndar *= 1.0 / (ndar.max() + eps)\n    return ndar\n\n\n  def tile_raster_images(X, img_shape, tile_shape, tile_spacing=(0, 0),\n                         scale_rows_to_unit_interval=True,\n                         output_pixel_vals=True):\n    \"\"\"\n    Transform an array with one flattened image per row, into an array in\n    which images are reshaped and layed out like tiles on a floor.\n\n    This function is useful for visualizing datasets whose rows are images,\n    and also columns of matrices for transforming those rows\n    (such as the first layer of a neural net).\n\n    :type X: a 2-D ndarray or a tuple of 4 channels, elements of which can\n    be 2-D ndarrays or None;\n    :param X: a 2-D array in which every row is a flattened image.\n\n    :type img_shape: tuple; (height, width)\n    :param img_shape: the original shape of each image\n\n    :type tile_shape: tuple; (rows, cols)\n    :param tile_shape: the number of images to tile (rows, cols)\n\n    :param output_pixel_vals: if output should be pixel values (i.e. int8\n    values) or floats\n\n    :param scale_rows_to_unit_interval: if the values need to be scaled before\n    being plotted to [0,1] or not\n\n\n    :returns: array suitable for viewing as an image.\n    (See:`Image.fromarray`.)\n    :rtype: a 2-d array with same dtype as X.\n\n    \"\"\"\n\n    assert len(img_shape) == 2\n    assert len(tile_shape) == 2\n    assert len(tile_spacing) == 2\n\n    # The expression below can be re-written in a more C style as\n    # follows :\n    #\n    # out_shape = [0,0]\n    # out_shape[0] = (img_shape[0] + tile_spacing[0]) * tile_shape[0] -\n    #                tile_spacing[0]\n    # out_shape[1] = (img_shape[1] + tile_spacing[1]) * tile_shape[1] -\n    #                tile_spacing[1]\n    out_shape = [(ishp + tsp) * tshp - tsp for ishp, tshp, tsp\n                        in zip(img_shape, tile_shape, tile_spacing)]\n\n    if isinstance(X, tuple):\n        assert len(X) == 4\n        # Create an output numpy ndarray to store the image\n        if output_pixel_vals:\n            out_array = numpy.zeros((out_shape[0], out_shape[1], 4), dtype='uint8')\n        else:\n            out_array = numpy.zeros((out_shape[0], out_shape[1], 4), dtype=X.dtype)\n\n        #colors default to 0, alpha defaults to 1 (opaque)\n        if output_pixel_vals:\n            channel_defaults = [0, 0, 0, 255]\n        else:\n            channel_defaults = [0., 0., 0., 1.]\n\n        for i in xrange(4):\n            if X[i] is None:\n                # if channel is None, fill it with zeros of the correct\n                # dtype\n                out_array[:, :, i] = numpy.zeros(out_shape,\n                        dtype='uint8' if output_pixel_vals else out_array.dtype\n                        ) + channel_defaults[i]\n            else:\n                # use a recurrent call to compute the channel and store it\n                # in the output\n                out_array[:, :, i] = tile_raster_images(X[i], img_shape, tile_shape, tile_spacing, scale_rows_to_unit_interval, output_pixel_vals)\n        return out_array\n\n    else:\n        # if we are dealing with only one channel\n        H, W = img_shape\n        Hs, Ws = tile_spacing\n\n        # generate a matrix to store the output\n        out_array = numpy.zeros(out_shape, dtype='uint8' if output_pixel_vals else X.dtype)\n\n\n        for tile_row in xrange(tile_shape[0]):\n            for tile_col in xrange(tile_shape[1]):\n                if tile_row * tile_shape[1] + tile_col < X.shape[0]:\n                    if scale_rows_to_unit_interval:\n                        # if we should scale values to be between 0 and 1\n                        # do this by calling the `scale_to_unit_interval`\n                        # function\n                        this_img = scale_to_unit_interval(X[tile_row * tile_shape[1] + tile_col].reshape(img_shape))\n                    else:\n                        this_img = X[tile_row * tile_shape[1] + tile_col].reshape(img_shape)\n                    # add the slice to the corresponding position in the\n                    # output array\n                    out_array[\n                        tile_row * (H+Hs): tile_row * (H + Hs) + H,\n                        tile_col * (W+Ws): tile_col * (W + Ws) + W\n                        ] \\\n                        = this_img * (255 if output_pixel_vals else 1)\n        return out_array\n"
  },
  {
    "path": "DeepLearningTutorials/issues_closed/2_RBM_cost_fn.txt",
    "content": "Reported by : Razvan\n\nCost function (delta of free energy) has a reversed sign (i.e. free_energy(positive) - free_energy(negative) ). I'm not sure\nwhere the minus pops in .. but is confusing when going from theory to code. \n\n\nFIXED \n"
  },
  {
    "path": "DeepLearningTutorials/issues_open/1_SdA_performance.txt",
    "content": "Reported by : Razvan\n\nBest performance for SdA float64 CPU : 1.23%\n                         float32 CPU : 1.30%\ntarget : 1.10%\n\nPossible reasons:\n    - bug !? \n    - random seed / weights initialization / finetuning early stopping parameters\n"
  },
  {
    "path": "DeepLearningTutorials/issues_open/3_RBM_scan_GPU.txt",
    "content": "Reported by : Razvan\n\nScan is not GPU ready.. making RBM tutorial slow on GPU (not tested yet).\nQuick fix is a optimization that removes scan if you're doing CD-1.\n"
  },
  {
    "path": "DeepLearningTutorials/issues_open/4_RBM_scan.txt",
    "content": "Reported by : Razvan\n\nThe bug can be reproduced if you do : \n z = scan(..)\n c = f(z[-1])\n gp = T.grad(c, p, consider_constant = [ z[-1] ] )\n\nIn this case grad will not consider z[-1] constant. Workaround: \n\n z = scan(..)\n z_1 = z[-1]\n c = f(z_1)\n gp = T.grad(c,p, consider_constant = [z_1])\n\n Note : I need to make sure this actually happens .. it might have been an\n artifact of something else when I first got this. \n"
  },
  {
    "path": "DeepLearningTutorials/issues_open/5_results.txt",
    "content": "Reported by : Razvan\n\nWe should produce results + time for CPU float32 / CPU float64 / GPU . We should also \nspecify the batchsize (or number of updates) pointing out that you can't always just \ncompare the number of epochs. \n"
  },
  {
    "path": "DeepLearningTutorials/issues_open/6_benchmarking_pybrain.txt",
    "content": "Reported by : Razvan\n\nObservations : \n\n    1.  First thing, working with their dataset model is a pain ! Either I had \n        not figure it out, or it allows you to add only one datapoint at a time \n        in the dataset. This seems to me highly unoptimal ...\n\n    2.  You do not get batches for sgd ! The only thing you can do is compare with \n        batch size of 1.\n\n    3.  Their early stopping is different from ours. Differences : \n            - You can not set how often you do a pass on the validation set \n              (i.e. ``patience`` in our case).  You always do one epoch of training \n              and then you go through the validation set.\n            - You do not have an improvement thereshold, any improvement in\n              validation score leads to storing the new best parameters, and\n              increasing the time you will still look for better parameters\n            - The increase is not by multiplication but summation. So if at\n              epoch x you do better on the validation step, you will go on for \n              x+y epochs to look for something better ( we do x*y )\n\n    4.  The errors return by pyBrain are divided by the number of\n        classes. So if you do classification, you take the number of\n        errors and divide it by the number of test examples times the\n        number of classes. For MNIST this yields 10 times smaller\n        errors. Is this something standard .. should we do it ? It\n        definetelly makes error look smaller.\n\n    5.  There is no straight forward way of adding L1/L2 regularization (from\n        what I've seen), unless you go into their code and change it. That is not\n        ard to do .. but for now I do not want to meangle with the library\n\n    6.  The code for RBM is not ready (they say that it is work in progress). It seems to me that the \n        code is wrong .. They have 3 loops, which to me would mean that the inner most is for CD-k (\n        second is for one epoch / third for training). But they update the weights after each Gibbs \n        step in CD-k .. which results in a strage form of CD-1 that sees same example several time before\n        moving to the next one. I could (?) potentially fix the code but it is outside the scope of \n        benchmarking. \n\n    7.  There are question marks of how easy it would be to implement a SdA ( autoassociators might be \n        easy to do though).\n\n\n    RESULTS : \n    logistic_sgd on maggie46\n\nTotal error: 0.015611011103\nTotal error: 0.00966772673335\nTotal error: 0.00860664508883\nTime spend per epoch: 43.32\nFinal error is : 10.44\nTime spend per epoch: 43.32\nFinal error is : 10.44\n\n    Arac : \n\nTotal error: 0.0366924968888\nTotal error: 0.0366576944937\nTotal error: 0.0367442383338\nTime spend per epoch: 24.71\nFinal error is : 69.28\nTime spend per epoch: 24.71\nFinal error is : 69.28\n\n\n    ** Our thing with batchsize =1 **\n\ntest error of best model  8.45\ntime : 12.99\n12.01\n\n\n\n\n    Results : \n    mlp on maggie46\n\n\n    pybrain :: \n\nTotal error: 0.0124744609817\nTotal error: 0.00722484141084\nTotal error: 0.00599591269763\nTime spend per epoch : 1226.69\nFinal error is : 8.68\nTime spend per epoch: 1226.69\nFinal error is : 8.68\n\n20.4448 min\n\n    arac::\n\nTotal error: 0.0318599056504\nTotal error: 0.0316029246672\nTotal error: 0.0315542295953\nTime spend per epoch: 860.336666667 (s)\nFinal error is : 58.59\n\n    our thing::\n\ntest error of best model  3.88\ntime: 381.92\n\n"
  },
  {
    "path": "DeepLearningTutorials/misc/do_nightly_build",
    "content": "#!/bin/bash\n#we set the compiledir to the /Tmp dir to make the test faster by bypassing the nfs network.\ndate\nROOT_CWD=/Tmp/nightly_build\nCOMPILEDIR=/Tmp/lisa_theano_compile_dir_deeplearning\nNOSETESTS=${ROOT_CWD}/Theano/bin/theano-nose\n\nFLAGS=warn.ignore_bug_before=0.5,compiledir=${COMPILEDIR}\nexport PYTHONPATH=${ROOT_CWD}/Theano:${ROOT_CWD}/Pylearn:$PYTHONPATH\n\ncd ${ROOT_CWD}/DeepLearningTutorials/data\n./download.sh\n\ncd ${ROOT_CWD}/Theano\necho \"git version for Theano:\" `git rev-parse HEAD`\ncd ${ROOT_CWD}/DeepLearningTutorials/code\necho \"git version:\" `git rev-parse HEAD`\n\n#echo \"executing nosetests with mode=FAST_COMPILE\"\n#THEANO_FLAGS=${FLAGS},mode=FAST_COMPILE ${NOSETESTS}\necho \"executing nosetests speed with mode=FAST_RUN\"\nTHEANO_FLAGS=${FLAGS},mode=FAST_RUN ${NOSETESTS} test.py:speed\n#echo \"executing nosetests speed with mode=FAST_RUN and OMP_NUM_THREADS=2\"\n#OMP_NUM_THREADS=2 THEANO_FLAGS=${FLAGS},mode=FAST_RUN ${NOSETESTS} test.py:speed\necho \"executing nosetests with mode=FAST_RUN,floatX=float32\"\nTHEANO_FLAGS=${FLAGS},mode=FAST_RUN,floatX=float32 ${NOSETESTS}\n\n#we change the seed and record it everyday to test different combination. We record it to be able to reproduce bug caused by different seed. We don't want multiple test in DEBUG_MODE each day as this take too long.\n#seed=$RANDOM\n#echo \"executing nosetests with mode=DEBUG_MODE with seed of the day $seed\"\n#THEANO_DEBUGMODE_CHECK_STRIDES=0 THEANO_DEBUGMODE_PATIENCE=3 THEANO_COMPILEDIR=/Tmp/lisa_theano_compile_dir_deeplearning THEANO_UNITTEST_SEED=$seed THEANO_DEFAULT_MODE=DEBUG_MODE ${NOSETESTS}\n\n"
  },
  {
    "path": "README.md",
    "content": "# neuralnetmusic\nFelix's project for composing music using neural nets.\n\nThis is not in a state fit for public release right now, so play with at your own risk.  The myparser.py module turns musicxml files into training data.  The DBN.py module trains a DBN (deep belief network), and generates new music.  You need Theano to run.  There is a pre-trained model that you can play with.\n\n\n## Requirements\n\nYou will need the following Python packages:\n\n* Theano (see [installation instructions](http://deeplearning.net/software/theano/install.html))\n* numpy (see [installation instructions](http://docs.scipy.org/doc/numpy-1.10.1/user/install.html))\n* keras (see [installation instructions](https://github.com/fchollet/keras#installation))\n\n\n## Usage\n\nUsing this project:\n\n```bash\n$ python DBN.py sample\n```\n"
  },
  {
    "path": "joplin/alabama.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"265.92\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>16</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"88.13\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.99\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"155.36\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"178.40\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"201.43\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"227.46\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"227.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"88.13\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.13\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.13\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.99\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"155.36\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"178.40\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"201.43\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"227.46\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"227.46\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"198.09\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.35\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.70\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.42\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.77\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.12\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.70\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.42\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.77\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"215.25\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.94\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.30\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.77\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.71\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.18\" default-y=\"-60.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.47\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.94\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.30\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.77\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.71\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.18\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"148.26\">\n      <note default-x=\"12.00\" default-y=\"-65.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.33\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.99\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.33\" default-y=\"-180.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.33\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"231.15\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.28\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.28\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.20\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"175.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.59\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.24\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"175.23\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"175.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.23\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"233.86\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"74.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.41\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.41\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.41\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"179.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.69\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"199.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.69\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.77\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"199.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"199.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.69\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"228.56\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.24\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.13\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"173.15\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"203.52\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"76.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.80\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.69\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.15\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"191.53\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.08\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"73.08\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.08\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"137.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.36\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.43\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.36\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"226.39\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.39\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.83\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"91.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.83\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.46\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.90\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.90\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"201.35\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.35\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.27\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"178.33\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.67\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"33.67\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.67\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"55.35\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.02\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.02\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"120.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.05\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.35\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.70\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.05\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.05\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"249.52\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"77.14\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"130.31\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"179.15\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"179.15\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.95\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.76\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"224.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.12\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.79\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"201.95\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"201.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"150.47\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.43\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.43\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.41\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.41\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.42\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"61.42\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.42\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.44\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"99.44\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.44\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"231.06\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.30\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.30\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.24\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.13\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"175.15\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.52\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.30\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.18\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"175.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"175.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.15\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"194.03\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.74\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.21\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.21\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.21\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.51\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"138.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.51\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.25\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.25\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.95\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"233.59\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.07\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.78\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"152.21\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"176.92\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"207.28\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"78.07\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.07\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.50\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"176.92\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.08\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.92\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"242.27\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"77.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"100.92\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"124.21\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.21\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.21\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.79\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"194.09\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"217.38\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.92\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.92\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.50\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"194.09\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.09\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"209.64\">\n      <note default-x=\"16.80\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.52\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"166.55\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.55\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.29\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.52\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"166.55\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.55\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"213.14\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.63\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.27\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.63\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.26\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"144.89\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"170.53\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.63\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.27\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.63\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.26\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"144.89\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"170.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"230.30\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.62\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.24\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.60\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.84\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.46\" default-y=\"-55.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"202.08\" default-y=\"-60.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.62\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.24\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.60\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.84\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.46\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"202.08\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"163.31\">\n      <note default-x=\"12.00\" default-y=\"-65.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.86\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.28\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.86\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.86\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"314.93\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.88\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.06\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"251.15\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"282.24\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.97\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"251.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"251.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"251.15\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"235.57\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"39.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.69\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"163.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.13\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"272.60\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.54\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.54\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.72\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"208.82\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"239.91\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.45\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.63\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"208.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"208.82\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.82\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"235.57\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"39.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.69\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"163.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.06\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.13\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"190.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"274.80\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.72\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.72\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.38\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.07\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.23\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"223.89\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"223.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"223.89\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"248.54\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"248.54\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"248.54\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.04\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"223.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"223.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"223.89\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"184.41\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"34.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.47\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.95\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.42\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.85\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.85\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.90\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"146.85\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.85\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"210.77\">\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.46\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.83\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.29\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.78\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"162.24\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"185.71\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.83\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.83\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.83\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.75\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.08\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"162.24\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.24\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"154.05\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.22\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.24\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.24\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.24\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.21\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"43.21\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.21\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.72\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.72\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.72\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.73\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"101.73\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.73\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.24\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"234.64\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.68\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"102.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.99\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"208.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"243.80\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"98.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.93\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"119.93\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.93\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.35\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"185.35\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.35\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.22\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"207.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.06\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.79\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"207.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"207.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"207.22\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"241.03\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.26\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"183.12\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"213.48\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.21\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.12\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.28\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"192.23\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.21\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.63\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"78.63\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.63\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"167.47\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.84\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"233.43\">\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.54\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.92\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"126.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.69\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.30\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.30\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.14\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.30\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"148.18\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.65\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.94\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.94\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.94\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.65\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.65\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.29\" default-y=\"-175.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.29\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"167.22\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.56\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.56\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.45\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.56\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.50\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.50\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"122.67\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.53\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.53\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"110.97\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"110.97\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.34\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"162.45\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.96\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"29.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"83.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.78\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"137.69\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.82\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"162.45\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"29.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.87\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.82\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"83.82\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.78\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"137.69\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.82\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.74\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"110.97\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"110.97\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.34\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"300.97\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.72\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.72\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.51\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"133.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"159.90\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"190.26\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.26\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"216.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"259.81\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"141.15\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"179.88\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.23\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.12\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"155.12\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"179.88\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"155.12\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"230.71\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.63\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.94\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.94\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.87\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.24\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.17\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.63\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.63\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.94\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"181.24\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.07\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.24\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"152.82\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.90\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.95\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.90\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"123.50\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.52\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.05\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"144.67\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.11\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"62.11\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.39\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.23\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"118.49\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.67\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.45\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"118.49\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.67\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.22\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.45\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.67\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"169.98\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.03\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.06\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.09\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.12\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"88.12\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.16\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.22\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"145.22\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.06\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.06\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.12\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.19\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.19\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"211.23\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.21\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.21\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"129.84\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.71\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"148.71\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.46\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"186.46\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.84\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"167.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.59\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"117.41\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.90\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"117.41\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.90\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"247.65\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.19\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"36.19\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.19\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.39\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.39\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.39\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.58\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.58\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.58\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.78\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"108.78\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.78\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.14\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.14\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.14\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.17\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.33\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"221.85\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"208.69\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"221.85\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"221.85\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.39\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.39\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.78\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.78\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.33\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"130.16\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.26\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.26\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.26\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.26\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.26\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"117.41\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.90\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"117.41\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.90\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"217.76\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.14\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"74.14\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.95\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.76\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"113.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.57\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"133.57\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"153.38\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"193.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.95\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.95\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.57\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"175.43\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.81\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.81\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.62\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.43\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.43\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"91.24\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"150.66\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.62\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.24\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.86\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"193.83\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.71\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.71\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.41\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.41\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"142.59\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"167.41\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.71\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.55\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.71\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.41\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.43\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.59\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"158.26\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.36\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.71\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.71\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.31\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.91\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.50\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.36\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.71\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"128.95\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.34\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.02\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.18\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"35.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"35.34\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.68\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.68\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"184.44\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <barline location=\"right\">\n        <bar-style>light-light</bar-style>\n        </barline>\n      </measure>\n    <measure number=\"69\" width=\"260.52\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <key>\n          <fifths>-4</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"93.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.24\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.94\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.94\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.94\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.88\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"212.82\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"235.76\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"93.53\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.24\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.24\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.94\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.94\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"212.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"212.82\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"212.82\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"192.19\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"32.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.84\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"116.22\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.58\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.58\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"167.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"167.42\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.69\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.38\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.38\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.58\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.58\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.58\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"192.19\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.69\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.69\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.37\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.37\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"116.18\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.18\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.98\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.98\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"165.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.78\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.69\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.69\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.69\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.37\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.37\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.98\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.98\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.98\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"203.59\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"33.58\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.58\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.74\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.74\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"119.90\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.26\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.26\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"178.82\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.16\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.32\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.32\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.26\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.26\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.26\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"210.19\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.42\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.04\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.31\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"155.31\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"181.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.42\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.42\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.04\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.04\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.31\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.31\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.31\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"267.01\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"93.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.53\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.49\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.49\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.41\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"147.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.41\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"183.33\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.69\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"213.69\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"242.25\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"242.25\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"93.53\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.45\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.45\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.37\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.37\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"213.69\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"213.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"213.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"205.28\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.19\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.19\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.19\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.58\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.58\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.58\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.83\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.83\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.07\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.43\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"178.43\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.19\" default-y=\"-175.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.19\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.58\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.58\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.07\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.07\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"161.72\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.60\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.60\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.67\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.67\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.39\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.39\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"203.28\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.33\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.20\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.20\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.23\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"120.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.59\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.59\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.14\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"176.14\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.33\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.59\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"221.38\">\n      <note default-x=\"38.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.36\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.71\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.71\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.71\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.71\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.26\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.26\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.62\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"196.62\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"38.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.22\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.22\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.74\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.26\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.26\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.26\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"384.78\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"106.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.73\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"168.17\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"229.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"229.60\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"267.99\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"267.99\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"306.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"306.39\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"344.78\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"344.78\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"106.73\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"168.17\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.17\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"229.60\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"306.39\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"319.55\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"306.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"213.92\">\n      <note default-x=\"38.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.87\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.68\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"79.68\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.19\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.19\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.70\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.70\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.51\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"38.87\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"250.95\">\n      <note default-x=\"16.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.48\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.48\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.16\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.45\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"152.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.75\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.75\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.05\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"217.05\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.48\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.16\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"184.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"209.02\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"40.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.63\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.28\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"88.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.28\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.94\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.94\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.76\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.76\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"183.59\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.45\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.11\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"312.90\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"106.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.55\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.55\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.36\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.36\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"224.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"224.92\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"252.93\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"252.93\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"283.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"283.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"106.73\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.73\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.55\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.55\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.55\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.36\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"196.36\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"252.93\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"252.93\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"252.93\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"159.14\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"70.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.31\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"221.20\">\n      <attributes>\n        <key>\n          <fifths>-4</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"61.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"61.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"61.70\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.24\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"174.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"196.44\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"61.70\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"61.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.47\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.24\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.24\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.70\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"180.74\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.60\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.79\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.79\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.79\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.98\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.38\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.97\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"155.97\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.19\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.38\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.38\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.38\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.38\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.38\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"184.70\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.02\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.02\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.02\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.04\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.04\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.04\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.81\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"111.81\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.81\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"135.57\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.57\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.04\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.04\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"265.90\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"93.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.10\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.10\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"155.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.37\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"196.37\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.57\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.57\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"241.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"241.13\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"93.53\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"175.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.57\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.57\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.57\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"208.52\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.05\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.05\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.30\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.30\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.71\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.71\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"154.11\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"180.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.05\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.05\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.30\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.30\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.11\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.11\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.11\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"184.36\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.57\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"32.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.57\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.70\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"73.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.83\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"114.83\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.03\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.03\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.60\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.60\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.27\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.27\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.03\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"221.72\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"61.44\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.44\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.07\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.07\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.07\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.97\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.86\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.86\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"192.23\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"192.23\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.44\" default-y=\"-175.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.44\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.07\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.07\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.86\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"178.16\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.39\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.89\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.38\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.38\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"323.71\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"102.40\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.40\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.22\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.22\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.05\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.05\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"230.56\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"230.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"261.08\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"261.08\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"291.59\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"291.59\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"102.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.22\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"200.05\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"261.08\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"261.08\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"251.88\">\n      <note default-x=\"38.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.67\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.67\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.67\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.26\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.09\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"168.09\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"194.12\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"194.12\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.48\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"224.48\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"38.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.46\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.46\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.29\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"194.12\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.12\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"194.12\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"282.00\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.38\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.96\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.96\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.57\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.57\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.18\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"207.18\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.79\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"243.79\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.38\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.38\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.96\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"207.18\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.34\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"207.18\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"201.08\">\n      <note default-x=\"38.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.87\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.66\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.28\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.28\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.90\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.90\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.69\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.69\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"38.87\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"306.01\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"106.73\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.73\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.91\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.09\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.09\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"220.07\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"250.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"250.43\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"277.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"277.42\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"106.73\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"193.09\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"250.43\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"250.43\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"198.74\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"36.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.45\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.75\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"75.75\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.75\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"115.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"145.42\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.98\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"173.98\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.10\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"145.42\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"209.41\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.22\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.64\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.64\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"125.53\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.56\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.56\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.92\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"181.92\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.64\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.64\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.56\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.56\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"156.98\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.41\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"49.41\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.79\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.79\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.77\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.77\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"187.54\">\n      <note default-x=\"12.47\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.83\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.18\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.21\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.21\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.24\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.59\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.59\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.83\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.83\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.18\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.18\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.21\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.21\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.24\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.24\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.59\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"306.25\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"102.40\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"102.40\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.01\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"129.01\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.62\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.62\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"198.20\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"198.20\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"224.81\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"224.81\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.81\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"251.42\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"251.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"251.42\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"278.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"278.03\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"278.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"102.40\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"102.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.01\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"129.01\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.62\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"198.20\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"198.20\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"224.81\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"224.81\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"251.42\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"251.42\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"278.03\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"278.03\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"141.48\">\n      <note default-x=\"12.47\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.48\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"158.79\">\n      <note default-x=\"12.47\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"-185.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.83\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"246.91\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"60.50\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.50\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.57\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.57\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.24\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"152.90\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.90\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.97\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.97\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"219.64\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"60.50\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.57\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.41\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.57\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.90\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"193.97\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"180.81\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"193.97\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"205.25\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.96\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.91\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"83.87\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.82\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.78\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"155.73\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.69\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"59.91\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.75\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.91\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.82\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.73\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.57\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.73\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"239.29\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.42\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"150.61\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.61\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.31\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.31\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"213.50\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.61\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"189.31\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"189.31\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"229.78\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.02\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.07\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"120.09\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"147.12\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"174.14\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.16\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.09\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.14\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.14\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"196.92\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.13\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.13\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.09\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.05\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.97\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.13\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.13\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.05\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.18\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.35\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.18\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"222.08\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.06\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.12\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.12\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.18\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"116.24\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"142.30\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"168.36\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"194.42\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.96\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.12\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.12\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.24\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"168.36\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.52\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.36\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"170.59\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.94\" default-y=\"5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.03\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.11\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.11\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.05\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.05\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.05\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"260.12\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.91\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.28\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.65\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"161.02\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"185.40\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"209.77\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"234.14\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.28\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.28\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.28\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.02\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"209.77\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"209.77\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"209.77\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"200.58\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.55\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.55\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.52\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.49\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.49\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.04\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.04\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"173.01\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.55\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.55\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.49\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.04\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.88\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.04\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"207.42\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.23\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"60.46\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"84.68\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"108.91\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.14\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"157.37\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.59\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.46\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.29\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.46\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.91\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.37\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.20\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.37\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"174.26\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.48\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.48\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.66\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.84\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.84\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.32\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.32\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.50\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.48\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.48\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.84\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.32\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.32\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"216.29\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.24\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"62.47\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"87.71\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.95\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.98\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.21\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.45\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.47\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.47\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.95\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"164.21\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.21\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"262.63\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"76.73\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.70\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.55\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"146.55\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.11\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.11\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"76.73\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.70\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.70\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.11\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"218.07\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"231.23\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"218.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"238.12\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.84\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.67\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.67\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.51\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.35\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.18\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"155.02\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.86\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>32nd</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.19\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">continue</beam>\n        <beam number=\"4\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"213.35\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <beam number=\"3\">end</beam>\n        <beam number=\"4\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"213.35\" default-y=\"20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"59.67\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.67\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.67\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.35\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.02\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.02\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.02\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"187.79\">\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.88\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.77\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.38\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.26\" default-y=\"15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.15\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.03\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.77\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.77\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.38\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.15\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.31\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.15\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"153.47\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"65.48\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.05\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.96\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"216.65\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"31.70\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"31.70\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.45\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.45\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.91\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"123.38\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.38\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.59\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"31.70\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.45\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.28\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.45\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.38\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.96\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"262.39\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.19\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.85\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"137.50\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.16\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.82\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"211.47\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"236.13\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.85\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.69\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.85\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.16\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"211.47\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"198.31\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"211.47\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"177.69\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.10\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.83\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.83\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.20\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.20\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.93\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.83\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.20\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.20\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"219.72\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.73\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.45\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.18\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.91\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.94\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.67\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"192.39\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.45\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.45\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.91\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.67\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.67\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"186.85\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.77\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.24\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.72\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.60\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.72\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"144.49\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.65\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.49\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"212.01\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.80\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.60\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.60\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.41\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"111.21\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"136.01\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"160.81\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"185.61\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.44\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.60\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.60\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.21\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"160.81\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.97\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.81\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"220.47\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.08\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.08\" default-y=\"5.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.93\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"145.77\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.08\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.08\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.08\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.77\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"182.32\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"182.32\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.32\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"220.42\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.85\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.56\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.41\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.26\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"167.12\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"192.97\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.41\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"167.12\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.12\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.12\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"212.42\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.18\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.18\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.80\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.59\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.59\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.21\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.18\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.02\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.18\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.59\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.43\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.59\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"219.26\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.71\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.41\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.12\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.83\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.54\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.24\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"191.95\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.41\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.25\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.41\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.83\" default-y=\"-120.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.24\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.08\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.24\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"186.10\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.33\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.33\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.29\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"98.25\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.25\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.58\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.58\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.54\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.33\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.33\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.25\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.58\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.58\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"268.10\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.81\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"114.09\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.36\" default-y=\"-10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"164.64\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"190.67\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.94\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"241.22\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.09\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.09\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.64\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"215.94\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"215.94\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"206.60\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.84\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.92\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.92\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.84\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"74.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.84\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.92\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"160.96\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.96\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"242.02\">\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.34\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.68\" default-y=\"10.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.03\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.37\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.71\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"158.05\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.39\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>32nd</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.10\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">continue</beam>\n        <beam number=\"4\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"217.26\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <beam number=\"3\">end</beam>\n        <beam number=\"4\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"217.26\" default-y=\"20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.68\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.37\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"158.05\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.05\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.05\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"191.70\">\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.43\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"58.87\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.36\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.80\" default-y=\"15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"143.23\" default-y=\"10.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.66\" default-y=\"5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.71\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.87\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.87\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.36\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.23\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.39\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.23\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"150.25\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.32\" default-y=\"-70.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.49\" default-y=\"-70.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.32\" default-y=\"-150.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.49\" default-y=\"-150.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"221.69\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-65.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-60.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.94\" default-y=\"-60.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.75\" default-y=\"-65.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.11\" default-y=\"-70.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"196.93\" default-y=\"-65.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-140.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.94\" default-y=\"-140.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.75\" default-y=\"-145.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.11\" default-y=\"-150.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"196.93\" default-y=\"-145.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"209.01\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.85\" default-y=\"-45.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.70\" default-y=\"-45.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.37\" default-y=\"-50.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.39\" default-y=\"-55.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"141.06\" default-y=\"-50.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>32nd</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.22\" default-y=\"-50.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <beam number=\"3\">continue</beam>\n        <beam number=\"4\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.25\" default-y=\"-50.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>64th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <beam number=\"3\">end</beam>\n        <beam number=\"4\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.25\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>64th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.85\" default-y=\"-125.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.70\" default-y=\"-125.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.37\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.39\" default-y=\"-135.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"141.06\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"240.21\">\n      <note default-x=\"12.47\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"39.48\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"69.84\" default-y=\"-35.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"96.85\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"127.21\" default-y=\"-30.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.23\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.59\" default-y=\"-25.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"211.60\" default-y=\"-20.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.21\" default-y=\"-110.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.21\" default-y=\"-100.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.21\" default-y=\"-80.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"125.32\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-5.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.86\" default-y=\"20.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-165.00\" dynamics=\"70.00\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-130.00\" dynamics=\"70.00\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"139.80\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"29.17\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.17\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.17\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.42\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.42\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.94\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.94\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"29.17\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.42\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"122.63\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.26\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.26\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.26\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.77\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.77\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.77\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.26\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.26\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.26\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.52\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.77\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.77\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.77\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"222.21\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.78\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"74.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.67\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.67\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.12\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"136.12\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.56\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"156.56\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"197.45\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.12\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.01\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.01\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.01\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"179.88\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"155.12\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"258.63\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.39\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"38.39\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.39\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.78\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.78\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"117.57\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.57\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.93\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.93\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.93\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.12\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.96\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.12\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.12\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.64\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"217.48\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.64\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.64\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.78\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.78\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.78\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.57\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.57\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.12\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"187.12\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"141.15\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"149\" width=\"157.21\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.65\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.65\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.29\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.65\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.65\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.29\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.29\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.29\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"150\" width=\"114.88\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.32\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.96\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.96\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.64\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"87.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"151\" width=\"166.36\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.51\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"30.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.54\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"67.54\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"86.06\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.57\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"104.57\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.60\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"141.60\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.06\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"152\" width=\"166.36\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"30.51\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.54\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"67.54\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"86.06\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"104.57\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"141.60\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.06\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"153\" width=\"184.76\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.74\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.09\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.81\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.37\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.37\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.74\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.45\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.29\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.45\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"154\" width=\"149.20\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.02\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.03\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"106.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"124.44\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.02\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.02\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.03\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.30\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"155\" width=\"119.89\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.95\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.12\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.95\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"32.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"32.32\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.64\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"156\" width=\"193.75\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.76\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"86.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.72\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.72\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"157\" width=\"135.74\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"22.50\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"22.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"22.50\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.41\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.41\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.23\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.23\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"22.50\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.32\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.23\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.23\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"158\" width=\"125.24\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.91\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"159\" width=\"176.73\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"91.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.97\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.97\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"151.96\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.98\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"160\" width=\"176.73\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.99\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"91.98\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.97\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"151.96\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.99\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.98\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.97\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"161\" width=\"125.24\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"162\" width=\"125.24\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.91\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"163\" width=\"300.97\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.72\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.72\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.51\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"133.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"159.90\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"190.26\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.26\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"216.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"259.81\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"272.97\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.90\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"229.45\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"164\" width=\"141.15\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"165\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"166\" width=\"128.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.10\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.70\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.10\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"167\" width=\"179.88\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.23\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.12\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"155.12\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"168\" width=\"179.88\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"155.12\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.89\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.78\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.67\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"169\" width=\"336.07\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.59\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.59\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.84\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.84\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"217.75\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"256.66\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"295.56\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"103.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.59\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.84\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"256.66\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"243.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"256.66\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"170\" width=\"258.18\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.35\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.67\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"188.64\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"222.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.35\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.70\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.64\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.64\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"171\" width=\"228.86\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.45\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.61\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.63\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.63\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>16</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"172\" width=\"235.55\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.98\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>32</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/cleopha.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"209.75\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>1</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"85.93\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.93\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.93\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.69\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"114.69\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"114.69\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"114.69\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.66\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.66\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.66\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.66\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.64\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.64\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.64\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.40\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.40\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.40\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.40\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"147.22\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.98\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.98\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.98\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.98\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.10\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.10\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.10\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.66\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.66\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.66\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.66\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.64\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.64\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.64\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"209.74\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.46\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.46\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.46\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.46\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.99\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.99\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.99\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.99\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.55\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.55\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.55\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.09\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.09\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.09\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.09\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.62\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.98\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.98\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.98\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.98\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"127.67\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.52\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.52\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.03\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"69.03\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.55\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.52\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.52\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.03\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"69.03\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"127.53\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.48\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.48\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.48\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.96\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.44\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.44\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.44\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.96\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"236.75\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.55\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.71\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.71\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.23\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.56\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.40\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.56\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.56\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.56\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.72\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.88\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.88\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.20\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.20\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.20\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.55\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.56\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"180.04\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"193.20\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"193.20\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"189.69\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.02\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.02\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.02\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.71\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.71\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.40\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.40\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.40\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.40\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.71\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.71\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"232.39\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.97\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.13\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.29\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.77\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.77\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.77\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.10\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.94\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.94\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.10\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.42\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.42\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.42\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.97\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.77\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"171.26\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.42\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.42\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"140.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.76\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.76\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.53\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.29\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.29\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"30.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.76\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.76\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.53\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.29\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.29\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"214.54\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.57\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.41\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.57\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.57\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"112.47\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.47\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.83\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.99\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.90\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.90\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"153.89\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.07\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.07\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.07\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.15\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.15\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.22\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.07\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.07\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.15\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"127.49\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.47\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.47\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.95\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.42\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.47\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.95\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.95\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.42\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.42\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"188.10\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.63\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.63\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.63\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.92\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.92\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.21\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.92\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.92\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"244.00\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.86\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.86\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.18\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.18\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.18\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.50\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.83\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.83\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.83\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.18\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.66\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.83\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.83\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"134.77\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.29\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.29\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.58\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.58\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.58\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.58\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"230.80\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.66\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.66\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.49\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.66\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.30\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.14\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.30\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.63\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.63\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.63\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.33\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.98\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"170.46\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.63\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.63\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"139.06\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.37\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.37\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.37\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.73\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.10\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.10\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"30.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.37\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.37\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.10\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.10\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"121.94\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.99\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.99\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.35\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.35\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.35\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.99\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.99\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.99\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.35\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"191.74\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.53\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.53\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.53\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.74\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.74\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.94\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.94\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"145.77\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.94\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.94\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.74\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.74\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"125.24\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.91\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"134.11\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"243.34\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.17\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.33\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"134.11\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"230.14\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.81\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.81\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.13\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"170.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"191.79\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.55\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.55\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.55\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.55\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.76\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.98\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.98\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.39\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.55\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.55\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.76\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.76\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.98\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.98\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"212.34\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.37\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.89\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.89\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.37\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.73\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.89\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"176.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"176.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.37\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.37\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.37\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.37\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.37\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.37\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"176.37\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.37\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"151.69\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.52\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.52\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.52\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.52\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.57\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.52\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.52\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.05\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.57\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.57\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.57\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"125.29\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.85\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.85\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.77\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.77\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.85\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.85\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.77\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.77\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"134.16\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.14\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.14\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.14\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.14\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.28\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.42\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.42\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"243.39\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.55\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.39\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.55\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.55\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.55\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.87\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.87\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.20\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.20\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.20\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.52\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.52\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.52\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.52\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.87\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.52\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"177.58\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.66\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.66\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.32\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.66\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"220.28\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.07\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.91\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.07\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.07\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.40\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.40\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.40\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.72\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.56\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.72\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.72\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.04\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.37\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"165.21\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.37\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.07\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.72\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.37\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.37\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"128.55\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.53\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.74\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.74\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.53\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"111.42\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.31\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.31\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.31\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.31\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.95\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.31\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.31\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"128.55\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.21\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.21\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.21\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.21\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.41\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.74\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"128.58\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.21\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.21\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.41\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.78\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.78\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"163.71\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.75\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.47\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.83\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.75\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.83\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.78\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.78\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.95\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"252.24\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"120.49\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"145.28\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"171.31\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"171.31\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"210.97\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.97\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.49\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.49\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.65\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.31\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"210.97\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.97\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"224.13\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"146.52\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"176.88\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.35\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.03\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.71\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.71\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.71\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.71\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.99\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.99\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.99\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.99\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.35\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.35\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.71\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.71\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.99\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.99\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"159.68\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.77\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.77\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.77\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.77\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.88\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.98\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.98\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.98\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.77\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.93\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.77\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.98\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.98\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.75\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.75\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"176.84\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.02\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.69\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.69\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.96\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.96\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.34\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.34\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.69\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.96\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.96\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"146.52\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.27\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.27\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.27\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.82\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.37\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.27\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.64\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"225.60\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"109.41\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"153.48\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.41\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.41\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.48\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"153.48\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.74\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.74\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"173.07\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.48\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.15\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.15\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.31\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"194.30\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.27\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"90.17\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"116.20\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.27\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.27\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.43\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.20\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.45\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.61\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"141.91\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.19\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.19\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.06\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.93\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.19\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.19\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.93\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.12\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.12\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"170.47\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.79\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.58\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"77.36\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.15\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.15\" default-y=\"50.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.01\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.01\" default-y=\"45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.58\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.58\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.58\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.15\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.01\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.01\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.01\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"153.31\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.87\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.87\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.42\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.96\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.84\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.96\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.84\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.84\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.84\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"223.65\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.69\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"151.35\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.35\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.54\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.70\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.70\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.69\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.69\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.69\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.35\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.35\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.70\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"172.55\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.77\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.77\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.77\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.63\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.65\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.62\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.79\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.77\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.65\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.62\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"141.76\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.08\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.12\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.04\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.04\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.08\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.08\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.12\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.12\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"176.88\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.77\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.77\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.77\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.93\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.96\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.96\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"198.11\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.64\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"117.67\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.16\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.67\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"145.72\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.09\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.95\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.09\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.95\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.03\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.03\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"228.69\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.27\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.73\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"155.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.20\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.20\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.20\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"191.14\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.14\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.14\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.27\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.27\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.27\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.20\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.14\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"191.14\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"158.16\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.30\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.30\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.30\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.12\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.93\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.93\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.93\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.93\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.46\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.30\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.93\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.93\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.39\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.23\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"175.32\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.46\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.92\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.38\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"101.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.84\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.84\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.78\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.78\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.92\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.84\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.78\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.78\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"144.99\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.92\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.92\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.24\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.56\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.56\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.56\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.92\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.92\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.56\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.48\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.48\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.48\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"175.36\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.47\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.93\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.40\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"101.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.81\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.93\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.93\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.93\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.86\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.86\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.81\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.81\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"176.16\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.49\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.18\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.54\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.49\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.49\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.66\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.54\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.23\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.23\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.39\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"249.32\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"170.18\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"170.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"208.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"208.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.18\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"208.95\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"208.95\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"222.11\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"143.59\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.59\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.59\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.82\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"172.15\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.02\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.04\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.06\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.09\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.09\" default-y=\"50.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.32\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.32\" default-y=\"45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.04\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.04\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.04\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.09\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.32\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"154.99\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.27\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.27\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.06\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.85\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.85\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.12\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.27\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.27\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.85\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.12\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.12\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"168.19\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.77\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.77\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.50\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.06\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.06\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.66\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.83\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.83\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.77\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.77\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.77\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.06\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.06\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.83\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.83\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"170.42\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.96\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.96\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.96\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.31\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"72.31\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.66\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.96\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.34\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.50\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"178.57\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.24\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.15\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.15\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.06\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.06\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.24\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.24\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.15\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.15\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.06\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.06\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"134.11\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"243.34\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.85\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.17\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.17\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.50\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.85\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.33\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"134.11\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.13\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"230.14\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.81\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.81\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.97\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.13\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.30\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.65\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"170.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.30\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"138.40\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.20\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.20\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.40\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.40\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"30.04\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.20\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.20\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.40\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.40\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"266.39\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.92\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.92\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.44\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.28\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.44\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.44\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"165.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"165.06\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.06\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"208.59\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.42\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"208.59\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"230.20\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"230.20\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.92\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.92\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.92\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.06\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"230.20\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"230.20\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"230.20\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"152.41\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.70\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.70\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.40\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.40\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.11\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.70\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.70\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.70\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.40\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"126.01\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.10\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.20\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.31\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.31\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.10\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.10\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.20\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.31\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.31\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"134.88\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"244.10\">\n      <note default-x=\"16.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.39\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.39\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.39\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.91\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.75\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.91\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.91\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.23\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.23\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.56\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.39\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.56\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.56\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.56\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.72\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.88\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.88\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.39\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.39\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.23\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.88\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.88\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"134.88\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"307.21\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"78.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.97\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.51\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.51\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"192.05\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"192.05\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"192.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"223.60\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.44\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"223.60\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"223.60\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"255.14\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"241.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"255.14\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"255.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"255.14\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"78.50\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.50\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"192.05\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"241.98\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"255.14\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"255.14\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"153.74\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.07\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.11\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.11\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.87\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"136.62\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.17\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.17\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.17\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.17\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.35\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.35\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.35\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.17\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.17\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.17\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.35\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"153.74\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.07\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.11\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"132.43\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.81\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"174.91\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"29.17\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.08\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.28\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.40\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"29.17\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.08\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.08\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.08\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.48\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.40\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.40\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.40\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"220.18\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.91\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.66\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"174.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.29\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.04\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.04\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.04\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"195.01\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.61\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.21\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.82\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.43\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"125.03\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.64\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.25\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.21\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.21\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.43\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.43\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.64\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.64\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.64\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"126.36\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.38\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.38\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.57\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.19\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.38\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.57\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.57\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.57\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"143.52\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.68\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.78\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.35\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.57\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.57\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.57\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.78\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.35\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"151.39\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.55\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.11\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.11\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.27\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.58\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.68\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.68\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.68\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"222.21\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"41.31\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"122.55\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"147.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"196.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.51\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.68\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.68\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.55\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"158.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.58\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.58\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"181.22\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.30\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.65\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.65\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.98\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.98\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.30\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.30\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"156.05\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.47\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.93\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.93\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.93\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.93\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"190.37\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.21\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.47\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.99\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"142.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.21\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.21\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.73\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"207.53\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.24\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.48\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"84.72\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"108.97\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.21\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.48\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.48\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.97\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.97\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"156.05\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.81\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.81\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.29\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"167.45\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.20\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.20\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.20\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.65\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.65\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"218.28\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.16\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"130.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"151.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.43\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"193.51\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.07\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.07\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"172.43\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.43\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.43\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"194.77\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.27\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.27\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.30\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.30\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.22\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.38\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.27\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.70\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.70\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"124.46\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.43\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.43\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.14\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.71\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.71\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.43\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.43\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.14\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.14\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"152.12\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"22.50\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.62\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.40\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"22.50\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.62\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.27\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.40\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.40\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.40\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"175.94\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.83\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.92\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"130.09\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.18\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.74\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.92\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.09\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"193.10\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.67\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"101.34\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.67\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"168.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.34\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.34\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.01\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.01\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.01\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"158.00\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.37\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.88\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.85\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.85\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.37\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.88\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.88\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.88\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"132.83\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.59\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"140.69\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.75\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.78\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.16\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.16\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.78\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.94\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"211.51\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"39.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.81\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.45\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"118.81\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.46\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"186.75\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.81\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.81\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.81\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.10\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"115.66\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.03\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.55\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.52\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"37.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.03\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.03\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.55\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.55\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"132.83\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.59\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"167.15\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.12\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.63\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"142.39\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.61\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.61\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.12\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.63\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.63\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.63\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"235.95\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.74\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.15\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"121.56\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"143.96\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"166.37\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"188.78\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"211.19\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.15\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.15\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.96\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.96\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.78\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.78\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.78\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"142.13\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.13\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"117.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.07\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.07\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.13\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.20\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.20\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"153.53\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.50\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.92\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.92\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.92\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.08\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.08\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"176.45\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.86\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.03\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.19\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.36\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"130.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.86\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.19\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.53\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"195.28\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.41\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.41\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.44\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.44\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.45\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.61\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.07\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"155.33\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.35\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"45.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.19\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"66.19\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.38\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.38\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.03\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.38\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.38\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"222.37\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"101.59\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.59\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"122.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.87\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.44\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"165.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.44\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.72\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.72\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.72\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.59\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.59\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.15\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"186.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.72\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.72\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"221.73\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.10\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"80.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.10\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.25\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.25\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.83\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.83\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.55\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"182.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.55\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.68\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"153.83\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.83\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.83\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"170.80\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.18\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.18\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.18\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.04\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.18\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"136.48\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.44\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.44\" default-y=\"45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"170.80\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.18\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.80\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.04\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.59\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.18\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.42\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"136.48\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.44\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.44\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.72\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.16\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"217.18\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.60\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.87\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.14\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"192.41\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.97\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.97\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.97\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.60\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.60\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"140.52\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.46\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.19\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.19\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.73\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.46\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.46\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.19\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.19\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"170.88\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"75.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.87\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.48\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"116.48\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.48\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.79\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.79\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.79\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.18\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.79\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.79\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.79\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"212.57\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.16\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"78.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.16\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.44\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.44\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.08\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.08\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.08\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"174.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.80\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"146.08\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.08\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.08\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"161.64\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.60\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"116.74\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.88\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.23\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.23\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.45\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.74\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"155.88\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.72\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.72\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.72\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.72\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.86\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.86\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.72\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.72\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.58\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.58\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"190.10\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.90\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.63\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"125.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.93\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.90\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.90\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.90\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.36\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.93\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.93\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.93\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"170.69\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.05\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"125.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"145.92\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.05\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.63\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.63\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.63\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"189.51\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.82\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.84\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.84\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.89\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.05\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.66\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.82\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.89\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"149.56\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.99\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"43.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.99\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.98\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.98\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.97\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.97\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.98\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.98\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.97\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.97\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"154.36\">\n      <note default-x=\"16.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"47.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"66.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.02\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"103.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.73\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.59\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.59\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.59\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.88\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.59\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.59\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"204.45\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.13\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.13\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"117.35\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.35\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.96\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"137.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.96\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.69\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"166.52\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.69\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.74\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.96\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.96\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"197.14\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.26\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.26\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.26\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.30\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.38\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.80\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.26\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"153.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.34\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"120.49\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.44\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.44\" default-y=\"45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"154.81\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.93\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.93\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.97\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"111.01\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"130.05\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.46\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.46\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.46\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.93\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.01\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.01\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.01\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"120.49\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.44\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.44\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.72\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"168.01\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.74\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.08\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"143.25\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.74\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.74\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"133.69\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.82\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.82\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.18\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.18\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.91\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.82\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.18\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.18\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"164.05\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.65\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.65\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.65\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.82\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.91\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.56\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.91\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"247.22\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.58\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"118.58\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.58\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"160.02\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.02\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.73\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"222.46\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"209.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"222.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.86\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.86\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.30\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"180.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"180.73\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.73\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"153.96\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.49\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.49\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.49\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.49\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"148.20\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.48\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.44\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.74\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.74\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.48\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.48\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.23\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.23\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"148.20\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.67\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.47\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.93\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.26\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.26\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.93\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.93\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.93\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"171.13\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.93\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.65\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.57\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.57\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.57\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.29\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.01\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.01\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.01\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"189.95\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.94\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.94\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.04\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.04\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.06\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.21\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.37\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.94\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"148.21\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.21\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"136.43\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>922.24</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/entertainer.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"217.21\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"74.93\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"74.93\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.47\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.01\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.55\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"133.55\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.81\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"164.81\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.35\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"154.28\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.54\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.62\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.88\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.42\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.54\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.08\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.62\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.88\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"184.64\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.99\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.97\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.96\" default-y=\"-60.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.53\" default-y=\"-55.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.52\" default-y=\"-60.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.88\" default-y=\"-65.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.99\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.97\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.96\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.52\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.88\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"156.17\">\n      <note default-x=\"12.00\" default-y=\"-65.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.36\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.04\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.41\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.36\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.36\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.04\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.04\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"165.68\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"31.53\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.60\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"90.13\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.39\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.92\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.13\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.13\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.39\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.39\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.55\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"180.68\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.76\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.06\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.06\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.06\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.36\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.36\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.36\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.92\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"155.92\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.92\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.88\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.88\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.76\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.76\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.36\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.36\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"219.11\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.48\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"117.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.76\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.04\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"160.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.04\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.19\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.90\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"175.02\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.95\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.84\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.47\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.89\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.90\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.90\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"185.58\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"37.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.95\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.52\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"78.52\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"119.67\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.82\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.09\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"210.95\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"74.31\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.27\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.19\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.37\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"183.62\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.43\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.43\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.43\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.86\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"158.86\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.86\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"170.38\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.23\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.46\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"140.06\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"97.48\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"174.38\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.66\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"51.32\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.98\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"110.30\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.96\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"149.62\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.64\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"179.28\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.08\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.23\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.38\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"134.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"154.52\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"204.55\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.89\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.89\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.44\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.44\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.11\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"152.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.11\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.66\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.66\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.66\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.44\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.44\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.44\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.55\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"171.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.66\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"158.25\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.49\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.38\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.38\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"173.62\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.74\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.21\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"94.94\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.12\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.85\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.47\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.94\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.94\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.12\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.12\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.28\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"188.62\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.64\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.47\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.47\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.47\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.29\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"120.29\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.29\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.85\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"163.85\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.85\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.32\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.32\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.64\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.64\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.29\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.29\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"175.38\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.91\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"53.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.82\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.73\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.54\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"116.54\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.54\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.64\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"158.25\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.75\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.49\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.38\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.38\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.38\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.75\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"103.13\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"212.58\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"74.56\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.01\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"135.23\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"167.60\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"187.82\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.78\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.78\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.23\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.23\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.60\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.60\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.76\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"154.89\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.76\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.13\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"130.13\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.13\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.59\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.59\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"180.81\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.69\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"36.69\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.59\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"56.59\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.48\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"116.26\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.16\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.05\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"156.05\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.59\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.59\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.37\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.16\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"154.89\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.51\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.51\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.76\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.13\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.51\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.51\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.76\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.76\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"170.25\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.23\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.68\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"92.90\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.26\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.49\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.45\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.45\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.45\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.90\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.90\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.26\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.26\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.42\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"185.25\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"96.75\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.75\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.93\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"116.93\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.93\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.49\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.49\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.49\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.28\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.28\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.93\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.93\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"215.41\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.86\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"74.86\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.86\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.39\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.39\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.91\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.91\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.96\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"156.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.96\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.49\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.49\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.49\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.39\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.39\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.39\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.49\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.65\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.49\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"142.76\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.48\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.72\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"99.72\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"117.99\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.24\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"177.08\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.09\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.09\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.14\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.27\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"152.32\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.09\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.18\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.18\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.27\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.27\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.27\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"181.98\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.05\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"53.05\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.58\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"73.58\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"114.63\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.70\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.22\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.05\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.05\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.10\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.70\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"159.92\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.25\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.25\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.25\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"50.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.50\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"69.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.76\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.26\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.26\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.51\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.51\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.50\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.50\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.50\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.01\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.51\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.51\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"181.52\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.61\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"97.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.99\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"117.99\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.99\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"156.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"244.83\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.61\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"90.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.61\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.63\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"158.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.31\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.31\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.31\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.07\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"220.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.07\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.61\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.61\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.96\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"181.31\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.31\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.31\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"180.90\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.46\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.14\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.62\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.30\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"215.22\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.20\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"87.61\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.81\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"188.42\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.81\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"215.22\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"87.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.81\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.01\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"188.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.41\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.22\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"202.50\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.28\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"48.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.28\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.30\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"116.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.30\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.74\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"177.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.74\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.28\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.28\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.28\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.63\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"207.60\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"99.90\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.48\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.84\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.37\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.43\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.48\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"165.27\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"29.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.27\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.27\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.18\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"123.34\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.91\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.91\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.02\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.34\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.18\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.34\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.57\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.57\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.57\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.09\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"152.07\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.42\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.42\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.42\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.31\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.89\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"186.39\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.38\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"76.13\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.50\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.88\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.63\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.50\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"209.51\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.91\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.15\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.51\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.75\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.12\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.12\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.12\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.91\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.51\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.67\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.51\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"176.38\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"58.45\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"94.19\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.62\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.32\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.32\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.32\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.32\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.75\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.75\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.59\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.75\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"171.14\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.20\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.59\" default-y=\"5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.98\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.18\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.38\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.79\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.79\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.79\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.18\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.18\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.18\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"150.48\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.58\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"90.58\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.72\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.72\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.91\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.02\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.15\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.15\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"175.58\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.57\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.57\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.81\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"92.81\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.81\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.05\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.82\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"150.82\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.82\" default-y=\"40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.79\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.79\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.57\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.57\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"175.58\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"58.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.19\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"94.19\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.19\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.82\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"150.82\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.82\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.59\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.32\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"224.91\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"89.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.78\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"178.06\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"200.15\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.68\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.68\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.68\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.87\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.06\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.06\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"216.90\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.41\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"113.65\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"139.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.65\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"216.90\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.41\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.24\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"113.65\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"139.06\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.83\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.65\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"204.18\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.73\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.42\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"179.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.71\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"195.78\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.73\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.68\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.65\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.02\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.76\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.71\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.65\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"207.60\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.50\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"116.61\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.61\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.52\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.84\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"86.24\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.24\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.35\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.52\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.57\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.57\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.57\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.04\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.09\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.14\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"152.07\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.42\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.42\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.42\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.31\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.95\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.89\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.84\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"186.39\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.38\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"76.13\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.50\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.88\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.63\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.75\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.50\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.25\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"165.27\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.27\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"121.63\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.51\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.63\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.79\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.63\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"220.97\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.57\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"101.84\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.38\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"196.21\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.57\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"83.57\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.57\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.57\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.11\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.11\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.11\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.11\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"173.40\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.56\" default-y=\"5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.60\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.64\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"152.74\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.11\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"92.11\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.98\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"127.98\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.05\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.05\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"161.28\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.77\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.77\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.16\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"136.52\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.39\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.39\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.77\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.77\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"167.64\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"31.83\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.49\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"91.32\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.04\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"142.87\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.66\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.66\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.66\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.32\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.32\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.04\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.04\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.21\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"182.64\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.96\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.64\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.64\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.64\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.31\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.31\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.31\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.87\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.87\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.87\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.48\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.48\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.96\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.96\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.31\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.31\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"219.11\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.48\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"117.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.76\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.04\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"160.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.04\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.19\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.90\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.19\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"175.02\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.95\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.84\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.90\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.79\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.47\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.90\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.90\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.80\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.70\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"185.58\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"37.37\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.95\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.52\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"78.52\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"119.67\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.82\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.82\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.09\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"159.65\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.69\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.84\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.69\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"210.95\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"74.31\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.27\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.19\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.29\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.21\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.37\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"183.62\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.43\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.43\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.43\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.86\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"158.86\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.86\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"170.38\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.23\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.46\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.46\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"140.06\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.99\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"97.48\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.29\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.29\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.99\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"174.38\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"31.66\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"51.32\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.98\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"110.30\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.96\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"149.62\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.64\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"179.28\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.08\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.23\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.38\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"134.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"154.52\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"211.64\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"74.82\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.82\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.31\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.80\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.80\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.78\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"156.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.78\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.26\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.26\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.29\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.26\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.26\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"140.84\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.81\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"185.05\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"31.70\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.70\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.06\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.99\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.99\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"31.70\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.99\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"82.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.99\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.48\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"169.31\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"46.60\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.60\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.60\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.23\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.23\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.23\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"89.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.86\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"111.48\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.48\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.48\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.11\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.11\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.11\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.60\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.60\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.60\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.86\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.11\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.11\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.11\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"152.15\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.75\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.75\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.95\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.95\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.75\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.75\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.75\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.35\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.95\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"199.67\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.75\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"49.75\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.75\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.75\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.11\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.11\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"103.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.70\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.30\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.30\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.30\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.89\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.89\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.48\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.75\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.70\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.89\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"189.06\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.07\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.28\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"142.71\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"159.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"91.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.50\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.50\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.92\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.92\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"120.36\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.69\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.69\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.38\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.07\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.07\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"203.11\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"68.39\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.29\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"131.09\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"157.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.23\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.39\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.29\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.45\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"103.20\">\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.82\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.82\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.82\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.71\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"76.71\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.71\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.71\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"150.72\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"60.77\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.77\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.77\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.77\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.77\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.22\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"154.69\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"43.35\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.35\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.35\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.95\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"62.95\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.95\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.95\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.54\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.54\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.54\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.54\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.14\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.14\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.14\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.14\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.73\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.73\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.73\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.35\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.35\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.35\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.54\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.73\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.73\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.73\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"137.52\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"48.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.77\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.77\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.77\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.45\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.45\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.61\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.77\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.77\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.77\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"263.31\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.22\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"104.22\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.22\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.58\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.58\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.58\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.58\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"160.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.43\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"185.43\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.43\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.43\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.86\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.86\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"236.28\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"236.28\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.22\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.22\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"210.86\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.86\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"164.25\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"66.40\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"129.17\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.48\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.48\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.17\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"211.78\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.75\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"37.43\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"37.43\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.85\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.85\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.28\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.28\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"211.74\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.97\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.97\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.92\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.06\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"138.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.19\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.19\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"186.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.95\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.95\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.95\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.19\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"162.19\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"207.59\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.84\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"78.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.41\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"154.94\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"222.47\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.79\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.79\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.84\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.84\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.79\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.79\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.79\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.81\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"185.84\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.84\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"174.90\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.84\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.84\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.25\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.25\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.25\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.25\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.65\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.65\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.65\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.05\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.05\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.45\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.45\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.65\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"157.73\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.39\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.22\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.22\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.39\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.39\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.31\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.22\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"205.26\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.10\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"51.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.10\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.10\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.46\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.46\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.46\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.90\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.90\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"130.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.34\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.34\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.78\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.78\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.78\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.22\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.10\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.10\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.90\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.78\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.78\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"157.73\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"64.05\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"104.09\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.03\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.03\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.07\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"140.57\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.49\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.74\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.74\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.49\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.23\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.23\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.23\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"266.79\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"143.70\" default-y=\"30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"191.26\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"217.63\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"241.41\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.76\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"217.63\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"204.46\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.63\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"115.34\">\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.22\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.22\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.48\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"85.48\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.48\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"162.86\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"62.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.86\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.46\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.46\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.46\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.86\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.86\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.66\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.46\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.46\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.46\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"166.83\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.05\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"46.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.05\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.05\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"67.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.33\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.33\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.61\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"88.61\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.61\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.61\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.89\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.89\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.18\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.18\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.18\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.18\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.05\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.05\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.05\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.61\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.18\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.18\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.18\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"149.66\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.01\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.02\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.02\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.05\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.05\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.02\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.02\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.02\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.03\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.05\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.05\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.05\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"197.19\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.15\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"49.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.15\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.15\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.51\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.51\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.72\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"102.72\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.72\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.72\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.94\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"125.94\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.94\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.94\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.16\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.16\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.37\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.15\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.15\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.72\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.16\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.16\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"189.29\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.12\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"142.86\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"160.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.61\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.10\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"185.28\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.66\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.66\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.42\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.52\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.10\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"33.10\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.20\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.30\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"75.30\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.66\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.66\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"185.24\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.69\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.08\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.08\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.77\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.77\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.93\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.09\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.79\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.79\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.48\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.48\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.39\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.39\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.77\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.77\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.79\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.79\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"132.29\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"-185.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.35\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"194.48\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"29.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.02\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"76.06\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"151.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.72\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"29.17\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.02\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.02\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.02\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.02\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.09\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.09\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.09\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.09\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.69\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.69\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.69\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"172.08\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.66\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.66\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.66\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.66\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.32\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"211.85\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.39\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.39\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.24\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"129.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.52\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"148.52\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.09\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.09\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.39\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.24\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"118.97\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"58.83\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.83\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.83\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.83\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.83\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.83\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"160.65\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.68\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"44.68\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.10\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.10\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.95\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"105.95\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.37\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.37\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.68\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.68\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.52\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.37\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.37\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"197.77\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"104.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.01\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.01\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"171.65\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.20\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.20\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.87\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"115.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.71\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.71\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.04\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.71\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.71\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.71\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"197.77\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"104.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.01\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.01\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.01\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.01\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"224.71\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"118.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.95\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"163.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.71\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.71\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.20\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"186.71\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"199.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.71\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"195.34\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.65\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.96\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"125.27\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.58\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"70.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.61\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.76\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"140.05\">\n      <note default-x=\"24.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"24.20\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"43.90\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.60\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.93\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.93\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"24.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"24.20\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"24.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.60\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.93\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.93\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.93\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"145.01\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.92\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.92\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.25\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"62.25\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.57\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.57\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.49\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.49\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"158.21\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.14\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"44.14\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.22\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.22\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.39\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"104.39\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.48\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.48\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.14\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.14\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.31\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.48\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.48\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"195.34\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.65\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.96\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"125.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.58\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.31\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.61\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"207.43\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.36\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.69\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"154.69\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.36\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.03\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.36\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"191.22\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.06\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"56.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.13\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.19\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.39\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.13\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"144.39\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.39\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.39\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"171.25\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.72\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.07\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.78\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.78\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.49\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"146.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.72\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.72\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.43\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.43\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.14\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.14\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"193.32\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.19\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.01\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"125.67\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"147.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"168.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.19\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.84\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.84\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.84\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.73\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.73\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"154.56\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.96\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.96\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.80\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.96\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.96\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.12\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.57\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.57\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"140.89\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.95\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"41.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.67\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"60.67\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.39\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.34\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"223.72\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.62\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"91.62\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.92\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.92\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.53\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"161.53\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.83\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.83\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.62\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"91.62\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.23\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"184.83\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.83\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"218.51\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.61\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.84\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.07\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"191.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"192.38\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.90\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.98\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"126.98\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.52\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.52\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.52\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"218.51\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"191.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.68\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"205.55\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.65\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"54.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.31\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"81.31\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.63\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"134.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.29\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.29\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.65\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.65\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.97\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.29\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.29\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"239.86\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"100.27\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"100.27\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"146.20\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"169.17\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"192.14\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.10\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.27\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.43\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.27\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.20\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.97\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"192.14\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"192.14\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"142.25\">\n      <note default-x=\"24.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"24.20\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.28\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"44.28\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.52\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"24.20\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"24.20\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"24.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.52\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.52\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"147.21\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.44\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"43.44\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.09\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.09\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.73\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.17\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.17\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"160.41\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.62\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"44.62\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.01\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.01\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.79\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"105.79\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.62\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.62\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.40\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"197.53\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.97\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.93\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.93\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.90\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.84\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.77\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.93\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.93\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.87\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.80\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"171.41\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.16\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.16\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.54\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.54\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.95\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.54\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.54\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.54\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"268.83\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"107.56\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"107.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.17\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"187.39\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"214.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"240.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.56\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.56\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.78\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"214.01\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"214.01\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"214.01\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"149\" width=\"206.53\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.81\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"88.81\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.26\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.26\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.71\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"181.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.59\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.59\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.04\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.04\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.49\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.49\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"150\" width=\"228.60\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"68.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.12\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"147.87\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"174.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"200.62\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.74\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.74\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.49\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.49\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"151\" width=\"189.84\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.90\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.81\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"116.81\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.81\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.43\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"164.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.43\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.90\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.90\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.62\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.62\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"152\" width=\"164.86\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.81\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.63\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/maple_leaf.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"260.58\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.92\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"120.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"120.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"166.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"189.85\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"189.85\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"235.82\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"74.93\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.93\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.90\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.90\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.90\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.87\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.87\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.87\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"212.84\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"212.84\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"164.49\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.71\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.06\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.06\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.71\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.71\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.71\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.41\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.41\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.37\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.37\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"197.65\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.97\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"126.92\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"126.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.89\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.90\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.90\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"197.65\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.98\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.95\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.92\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.92\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.89\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.97\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.94\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.90\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.90\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"238.29\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"70.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.55\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.55\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"209.26\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"209.26\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.98\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.98\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.83\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.83\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"246.60\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.55\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.67\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"144.67\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.73\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.48\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.48\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"213.19\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.75\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.31\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.05\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.54\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"187.85\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.80\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"213.19\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.31\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.05\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.54\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"187.85\" default-y=\"55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.80\" default-y=\"-60.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"198.72\">\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.41\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"144.50\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.81\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.81\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.34\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"186.96\">\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.27\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.54\" default-y=\"45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.82\" default-y=\"30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.36\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.36\" default-y=\"45.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.19\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.19\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"268.55\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"70.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.19\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"172.06\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"198.08\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"198.08\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.79\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"70.33\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.33\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.33\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"167.03\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.01\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.27\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-45.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"208.51\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.53\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.27\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"151.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.96\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.96\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.10\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.84\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"196.75\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.90\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.71\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"121.52\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.99\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.99\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"217.82\">\n      <note default-x=\"19.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.45\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"19.60\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"227.69\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"145.26\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.68\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.68\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"235.61\">\n      <attributes>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        </attributes>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"87.08\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"87.08\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"160.54\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"160.54\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"209.52\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"38.10\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.10\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.08\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"87.08\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.08\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.03\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.03\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"176.35\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.15\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"75.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.59\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.59\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.30\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.30\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.30\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.60\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.60\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.60\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.44\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.44\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"209.51\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.98\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"134.44\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"134.44\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.93\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.93\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"209.51\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.49\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.44\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.44\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.42\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.98\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.95\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.93\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.93\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"308.43\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.01\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.14\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"156.14\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"216.42\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"216.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"276.69\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"276.69\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.73\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.28\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"186.28\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"246.55\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"246.55\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"238.53\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"73.40\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.60\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.01\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.01\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.81\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.81\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"255.85\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.28\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"72.56\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.85\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.41\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"193.69\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"223.97\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.13\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"255.85\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.28\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"72.56\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.85\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.41\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"193.69\" default-y=\"30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"223.97\" default-y=\"55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.13\" default-y=\"-60.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"261.11\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.87\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.87\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"203.04\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"203.04\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"231.28\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"231.28\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.54\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.87\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.87\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.71\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.87\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"203.04\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"203.04\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"189.88\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"203.04\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"198.61\">\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.21\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.43\" default-y=\"45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.64\" default-y=\"30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.86\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"123.07\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.07\" default-y=\"45.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.85\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"173.85\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.43\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.43\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.43\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.86\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.86\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.86\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.29\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.29\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.29\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"219.68\">\n      <note default-x=\"19.60\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"19.60\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.82\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.98\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.98\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.19\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"122.41\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"148.44\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"148.44\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"194.86\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"19.60\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.98\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.98\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.98\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.41\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.41\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.41\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"168.89\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.31\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.62\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.72\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.72\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.13\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.62\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.62\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.62\" default-y=\"-45.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.72\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.72\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"210.37\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.97\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.97\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.14\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.14\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.31\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.54\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.54\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.97\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.97\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.81\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.97\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.14\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.14\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.98\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.14\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.31\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.31\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.15\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.31\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"250.04\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.98\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.63\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.28\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.93\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"172.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"172.58\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.79\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"224.79\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.63\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.93\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"148.93\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.93\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.23\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.23\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.23\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"228.78\">\n      <note default-x=\"19.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"77.49\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"77.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"126.96\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"152.98\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"152.98\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"202.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"19.60\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.49\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.49\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.49\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.96\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.96\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.96\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.71\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.71\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.71\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"175.19\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.76\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"59.53\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.53\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.53\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.53\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.53\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.55\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.57\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"208.35\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.48\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"58.97\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.97\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.45\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.93\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"136.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"136.30\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.26\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.97\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.97\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.97\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.93\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.93\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.78\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.78\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.78\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"196.31\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.79\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.59\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.38\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"80.38\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.96\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.76\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.55\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.59\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.59\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.59\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.17\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.76\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.76\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"219.72\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"94.51\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.51\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.69\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"154.78\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"154.78\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"194.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.51\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.51\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.51\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.69\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.69\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.87\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.87\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.87\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"161.39\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"177.39\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.09\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.45\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.45\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.63\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"161.39\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"177.39\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.27\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.45\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.45\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.18\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.36\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.54\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"161.39\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.23\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"226.52\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.84\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.35\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.35\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.86\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.37\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"162.73\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"162.73\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.75\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.35\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.37\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.37\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.24\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"182.24\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.24\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"172.14\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.34\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.68\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.02\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.02\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.04\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.38\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.68\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.68\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.68\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.36\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.36\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.04\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.04\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"170.98\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.17\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.35\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.52\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"107.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.87\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.35\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.35\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.35\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.70\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.70\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.05\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.05\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.05\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"133.86\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.97\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.97\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.93\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.93\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.29\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.29\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.97\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.97\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.93\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.93\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.29\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.29\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"201.34\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"87.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"154.21\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"176.58\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.73\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.73\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.47\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.47\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.21\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.21\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"153.82\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.48\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"70.43\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.90\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.06\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.06\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.06\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.06\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.06\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.06\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"221.30\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.35\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.35\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.54\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.29\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.29\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.29\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.48\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.48\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.94\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"138.10\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.13\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.13\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.25\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.25\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.38\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.38\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.13\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.38\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.38\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"188.42\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.22\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.43\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.43\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.65\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.87\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"123.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.23\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.66\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.43\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.43\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.43\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.87\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.87\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.45\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.45\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.45\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"176.39\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.95\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.89\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.84\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.68\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.68\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.62\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.89\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.89\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.89\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.79\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.79\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.68\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.68\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"175.22\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"51.56\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.56\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.12\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"110.90\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"110.90\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.56\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.56\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.56\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.68\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.68\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"159.22\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.32\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.48\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"69.48\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.81\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"126.97\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.97\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.32\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.64\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.64\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.97\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.97\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"214.66\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.07\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.07\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.43\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.80\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"151.17\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"151.17\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"189.90\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.07\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.07\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.07\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.80\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.80\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.53\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"170.53\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.53\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"156.33\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.78\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.56\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"68.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.90\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.12\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.12\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"172.33\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.73\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.83\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.83\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.73\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.73\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.73\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.47\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.47\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.20\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.20\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.20\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"156.33\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.78\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.56\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"68.34\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.90\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.56\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.12\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.12\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"185.53\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.73\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"51.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.47\" default-y=\"40.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.20\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.94\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"121.30\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.77\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.47\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.47\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.94\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.94\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.03\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.03\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.03\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"173.49\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.53\" default-y=\"15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.07\" default-y=\"25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"70.60\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.66\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.20\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.20\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.07\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.13\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.13\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.20\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.20\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"219.35\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"94.40\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.40\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.44\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"154.51\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"154.51\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"194.58\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.40\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.40\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.40\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.48\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.48\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.55\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.55\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.55\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"139.89\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.57\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.14\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.14\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.72\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.57\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.57\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.14\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.14\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.72\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"207.37\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"65.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.40\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.08\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.43\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.71\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.71\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.40\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.40\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.08\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.08\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"159.85\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.31\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.94\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.25\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.75\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"172.36\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.98\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.98\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.59\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.06\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.06\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.06\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.90\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.90\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.68\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"159.85\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.31\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.94\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.63\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"244.10\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.85\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"101.38\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.38\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.90\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"171.94\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"171.94\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"218.98\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.38\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.38\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.38\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.42\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"148.42\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.42\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.46\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"195.46\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"168.61\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.98\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.95\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.93\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.93\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.85\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.85\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.95\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.95\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.95\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.91\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.91\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.91\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.87\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.87\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"201.77\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.56\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"129.61\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"129.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.65\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.13\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.13\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"201.77\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.52\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.56\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.56\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.61\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.65\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.65\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.04\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.09\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.13\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.13\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"242.41\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.11\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"71.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"100.24\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.24\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"212.70\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"212.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.35\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.35\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.58\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.58\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"246.60\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.55\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"116.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.67\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"144.67\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.29\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.73\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.48\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.48\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"213.19\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.75\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.31\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.05\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.54\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"187.85\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.80\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"213.19\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.75\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.31\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.05\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.54\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"164.10\" default-y=\"30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"187.85\" default-y=\"55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.80\" default-y=\"-60.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"198.72\">\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.41\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"144.50\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.81\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.81\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.41\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.34\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.50\" default-y=\"-55.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"186.96\">\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"55.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>7</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.27\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.54\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.54\" default-y=\"45.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.82\" default-y=\"30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.36\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.36\" default-y=\"45.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.19\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.19\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.54\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.63\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"268.55\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"70.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.19\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"172.06\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"198.08\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"198.08\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.79\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"70.33\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.33\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.33\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.06\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.94\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"167.03\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.01\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.27\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.02\" default-y=\"-45.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.64\" default-y=\"-50.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"208.51\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.53\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.27\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"151.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.96\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.96\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.37\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.53\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.10\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.27\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.84\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"196.75\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.90\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.71\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"121.52\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.99\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.99\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.62\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.43\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"217.82\">\n      <note default-x=\"19.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.45\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"147.35\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"19.60\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"19.60\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.62\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.32\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.20\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"196.49\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.67\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.67\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.75\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.75\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.82\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.82\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.67\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.67\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.67\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.75\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.75\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"247.16\">\n      <attributes>\n        <key number=\"1\">\n          <fifths>3</fifths>\n          <mode>major</mode>\n          </key>\n        <key number=\"2\">\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        </attributes>\n      <note default-x=\"91.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.83\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.83\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.83\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.68\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.68\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.68\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.68\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.84\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"154.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.81\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"193.81\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.71\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"91.83\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.83\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.68\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.68\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.90\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.90\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"213.71\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"213.71\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"213.71\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"193.82\">\n      <note default-x=\"21.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.88\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.88\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.04\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"85.20\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.20\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.13\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.13\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.09\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.06\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"169.06\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"21.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.16\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.16\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.09\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.09\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"214.98\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.48\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.46\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"113.45\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.41\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"188.40\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.48\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.48\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.48\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.45\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.45\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.41\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.41\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"206.22\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.46\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.48\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"134.34\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"157.76\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.19\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.46\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.46\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.46\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.91\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.91\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.76\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.76\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"252.29\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"103.07\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.07\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.07\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.07\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.34\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.34\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.34\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.34\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.50\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"163.66\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.66\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.66\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"201.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.42\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"103.07\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.07\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.34\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.34\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.34\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.58\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"182.58\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.42\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.42\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.42\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"187.72\">\n      <note default-x=\"21.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.13\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.13\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.30\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"83.46\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.46\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.46\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.21\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.21\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"162.96\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"21.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.13\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.33\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.33\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.08\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.08\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"208.88\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.61\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"86.72\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.83\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.06\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.17\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.61\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.61\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.61\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.83\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.83\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.06\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.06\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"235.35\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.06\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.09\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"139.16\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"169.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.55\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"208.71\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.06\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.06\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.13\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.13\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.52\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.52\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"174.42\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.68\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.68\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.68\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.68\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.84\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.10\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"118.10\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.15\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.68\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.68\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.68\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.05\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.05\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.15\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.15\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.15\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"264.34\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"85.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.33\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.33\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.74\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.74\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.74\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.74\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.06\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.06\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.32\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"195.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"239.57\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"239.57\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"85.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.74\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.74\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.74\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"200.91\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.87\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.15\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.72\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"131.86\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"131.86\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.15\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.72\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.72\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.00\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.00\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"184.91\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.59\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.43\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.96\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.28\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.28\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.96\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"205.07\">\n      <note default-x=\"23.87\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"23.87\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"23.87\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.49\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.49\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.49\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.37\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.37\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.37\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"23.87\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"45.18\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.81\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"116.37\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"137.68\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.31\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"203.44\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.52\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.86\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"165.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.22\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.97\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.22\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.22\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"332.30\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"85.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"85.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.67\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"177.35\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"177.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"238.69\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"269.36\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"269.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"300.03\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"300.03\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"85.33\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.33\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.33\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.67\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.67\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.67\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.02\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"208.02\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"269.36\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"269.36\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"238.70\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.14\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"40.14\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.41\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"124.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"124.55\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.69\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.82\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.82\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"208.96\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.27\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.27\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.27\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.55\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.55\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.55\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.82\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"180.82\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"252.50\">\n      <attributes>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        </attributes>\n      <note default-x=\"55.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.83\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.83\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.83\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.35\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.35\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.35\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.35\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.51\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.67\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.67\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.67\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.82\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"181.82\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"208.39\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"55.83\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.83\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.35\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.35\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.35\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.24\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.24\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.39\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"208.39\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.39\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"235.16\">\n      <note default-x=\"21.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.43\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.43\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.76\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.76\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.88\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.88\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"206.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"206.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"21.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.43\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.43\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.43\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.32\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.32\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.44\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.44\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"290.77\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"94.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"120.23\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.36\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"168.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"192.63\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"216.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"240.90\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"265.03\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"94.20\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.20\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.36\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.36\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.36\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"192.63\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"192.63\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"240.90\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"240.90\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"240.90\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"200.27\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.93\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"153.22\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.51\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.64\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.64\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.22\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.22\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"170.71\">\n      <note default-x=\"21.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.81\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"81.97\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.97\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.97\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.86\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"119.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.80\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"21.33\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.91\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.91\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.80\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.80\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.80\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"187.87\">\n      <note default-x=\"21.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"21.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.18\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.18\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.18\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.18\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.34\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"83.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.50\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.31\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.31\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.21\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"163.11\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"21.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"21.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.18\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.18\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.18\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.40\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.40\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.21\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.21\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"209.04\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.63\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"86.76\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.90\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.17\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.30\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.63\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.63\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.63\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.90\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.90\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.17\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.17\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.17\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"308.08\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"85.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"111.36\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"136.25\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"212.04\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"242.40\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"268.43\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"281.60\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"85.33\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.33\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.25\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.25\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.25\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.16\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"187.16\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"242.40\" default-y=\"-155.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"242.40\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"173.82\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.52\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.52\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.52\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.68\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"75.85\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.85\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.85\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.75\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"117.75\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.52\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.80\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.80\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"190.98\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.40\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.40\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.40\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.40\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.56\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.72\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.72\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.72\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.97\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"121.97\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.10\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.22\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"166.22\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.40\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.40\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.40\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.85\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.85\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.10\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.10\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.10\" default-y=\"-60.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"200.89\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.87\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.15\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"109.71\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"131.85\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"131.85\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.13\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.01\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.71\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.71\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.99\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.99\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.99\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"184.89\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.59\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.43\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.11\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"149.95\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.95\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.59\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.95\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.95\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.95\" default-y=\"-65.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"283.59\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"105.60\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.60\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.16\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.16\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.16\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"196.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.50\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"238.05\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"238.05\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"238.05\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"105.60\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"126.38\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"167.94\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"196.50\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"217.28\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"238.05\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"258.83\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"200.23\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.52\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.09\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"163.44\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.44\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.08\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.28\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.44\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.44\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"207.73\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.62\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"92.62\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.79\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"160.38\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"160.38\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.97\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"182.97\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.21\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.21\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.38\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.38\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"179.63\">\n      <note default-x=\"12.47\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.30\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.12\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"82.15\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"108.18\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.18\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.12\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.12\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.18\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.18\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"187.48\">\n      <attributes>\n        <key number=\"1\">\n          <fifths>4</fifths>\n          <mode>major</mode>\n          </key>\n        <key number=\"2\">\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"72.37\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.37\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.74\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.74\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.50\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.50\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"72.37\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.37\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.74\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.74\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.74\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.50\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.50\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"284.68\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"104.20\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.86\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"141.86\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.39\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"165.39\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"212.47\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"236.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"259.54\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"104.20\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.20\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.93\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.93\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"236.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"236.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"158.62\">\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"29.63\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"72.66\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.66\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.86\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.86\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.66\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.66\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.66\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.86\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.86\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"217.34\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.39\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.42\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.42\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.80\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.19\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"139.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"139.58\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.35\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.42\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.42\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.42\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.19\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.19\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.97\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.97\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"171.82\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.87\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"71.90\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.90\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.06\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.06\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.87\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.78\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.78\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.18\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"226.21\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.58\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"65.15\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.15\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.73\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"118.30\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"144.88\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"144.88\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"198.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"198.03\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.15\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.15\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.15\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.30\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.30\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.46\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.46\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"304.03\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"95.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.23\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"199.07\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"224.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"224.91\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"276.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"276.59\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"95.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.07\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"199.07\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"220.70\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.03\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.74\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"141.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"141.58\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.26\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.42\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.42\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"151.95\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.41\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.88\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"195.14\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.41\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.41\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.06\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.89\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.71\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.24\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.24\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.89\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.89\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"186.84\">\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.34\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.21\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"111.88\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"161.57\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.57\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"282.03\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.17</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"95.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.37\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"191.34\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"213.32\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"213.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"257.27\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"257.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"95.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.34\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"191.34\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"235.29\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"235.29\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"235.29\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"215.00\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"39.97\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"67.94\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.46\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"157.46\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.43\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.94\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.94\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-160.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.46\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.46\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"207.56\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.09\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"136.44\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"136.44\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.79\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"182.79\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.61\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.61\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"215.27\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.71\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.71\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.74\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.28\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.28\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.99\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.71\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.71\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.41\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.41\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.96\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"162.96\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"138.81\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.65\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.65\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.84\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.84\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.02\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.02\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.65\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.65\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.65\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.84\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.84\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.02\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.02\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"216.53\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"104.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.88\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.88\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.56\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.56\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"187.25\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"104.20\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.20\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.88\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.88\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.88\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.56\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.56\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.56\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.25\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"187.25\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"167.98\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.16\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"44.16\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.98\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.98\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.60\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.41\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"143.22\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.16\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.16\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.16\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.79\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.79\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.41\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.41\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"133.66\">\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"29.63\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.23\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.23\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"108.90\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"108.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.20\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.20\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.20\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.81\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.81\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.81\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.32\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"97.32\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"192.38\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.87\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.90\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.84\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"104.79\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"125.73\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"125.73\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"167.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.79\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.79\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.68\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.68\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"146.86\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.13\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"62.16\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.16\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.10\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.10\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.13\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"36.13\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"36.13\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.95\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.95\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.31\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.31\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"201.25\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.87\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"58.76\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.76\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.79\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"106.68\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"128.57\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.57\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.49\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"176.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.76\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.76\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.76\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.68\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.68\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"304.03\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"95.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.23\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"199.07\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"224.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"224.91\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"276.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"276.59\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"95.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.39\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.07\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"199.07\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"250.75\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"220.70\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.03\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.74\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"141.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"141.58\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.26\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.06\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.74\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.42\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.42\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"151.95\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.41\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.88\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.94\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.41\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.88\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"195.14\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.41\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.41\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.06\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.89\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.71\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-80.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-70.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.24\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.24\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.89\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.89\" default-y=\"-90.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"186.84\">\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.34\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.21\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"111.88\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"161.57\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.57\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.34\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.21\" default-y=\"-75.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"315.23\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"95.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.91\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.19\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"204.48\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"231.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"231.77\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"286.34\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"286.34\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"95.33\" default-y=\"-130.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.33\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.91\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.48\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"204.48\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"259.06\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"259.06\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"259.06\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"248.20\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.58\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.30\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.30\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.43\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"181.43\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"214.02\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.02\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.17\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.30\" default-y=\"-160.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.30\" default-y=\"-125.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.43\" default-y=\"-150.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.43\" default-y=\"-115.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"240.76\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"40.40\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"68.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"68.79\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.19\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"125.58\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"153.98\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"153.98\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.79\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.79\" default-y=\"-95.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.79\" default-y=\"-85.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.58\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.58\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.37\" default-y=\"-145.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"182.37\" default-y=\"-110.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"254.47\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.67\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"146.67\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"200.53\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-140.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.87\" default-y=\"-105.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.73\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.73\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.60\" default-y=\"-135.00\" dynamics=\"94.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.60\" default-y=\"-100.00\" dynamics=\"94.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <barline location=\"right\">\n        <bar-style>light-heavy</bar-style>\n        </barline>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/searchlight.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"236.19\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>2</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"104.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.34\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.97\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"204.05\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"104.80\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.34\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.97\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"204.05\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"152.26\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.07\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.14\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.17\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.59\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.07\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.14\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.17\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.59\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"169.42\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.24\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.47\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.87\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"123.26\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.66\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.24\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.87\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"123.26\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"114.42\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.65\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"213.37\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.97\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.97\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.45\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.78\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.61\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.78\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.26\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.26\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.26\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.29\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.29\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.29\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.64\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.45\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.45\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.26\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.26\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"172.99\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.04\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.04\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.75\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.75\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.66\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.66\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.23\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.23\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.61\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.61\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.61\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.75\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.66\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.82\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"285.87\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.32\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.64\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"152.64\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.97\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"178.97\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"205.29\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"205.29\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"257.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"257.94\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.32\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.32\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.97\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.97\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"231.62\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"231.62\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"154.94\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.67\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.67\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.34\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.34\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.67\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.67\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.01\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.01\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"233.22\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.75\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"57.75\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.92\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.54\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.71\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.01\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"175.01\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"203.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"203.31\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.75\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.75\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.75\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.38\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.38\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.01\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"175.01\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"195.37\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.32\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.03\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.89\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.06\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.92\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.92\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.18\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.18\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.18\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.06\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.06\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.06\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"189.27\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.14\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"48.14\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.72\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.72\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.31\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"119.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"119.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.50\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.14\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.14\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.14\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.31\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.76\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.92\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.92\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"259.02\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"75.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.17\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.17\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.81\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.81\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.84\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.84\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.49\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"186.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"210.13\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.13\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"233.78\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"233.78\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"75.33\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.17\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.17\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.84\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"162.84\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"210.13\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.13\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"205.02\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.96\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.96\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.98\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.98\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.79\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.59\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.59\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.62\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.62\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.98\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.98\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.59\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.59\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"183.86\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.68\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.68\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.34\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.34\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.72\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.88\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.10\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.10\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.90\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.90\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.90\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.34\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.88\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.88\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.88\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"209.69\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.32\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.67\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.67\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.70\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.70\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.05\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.05\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.74\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.74\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.32\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.70\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.70\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.40\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.40\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.56\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"201.06\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.89\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.89\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.28\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.77\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.77\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.89\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"102.89\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.25\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"133.25\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.28\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.28\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"321.23\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.76\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.74\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"164.74\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.72\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"195.72\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"257.67\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"288.65\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.76\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.76\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.72\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"195.72\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"257.67\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"257.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"260.32\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.61\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.05\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.76\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.76\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"228.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"228.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.61\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.61\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.48\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"184.48\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"228.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"228.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"238.83\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.93\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.93\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.85\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.85\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.01\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.17\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.17\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.63\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.63\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.63\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.09\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.09\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.09\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.39\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"71.39\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.39\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.17\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"238.29\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.21\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.21\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.95\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.95\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.95\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.46\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.46\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.84\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.84\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.21\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.21\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.57\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.57\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.95\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.95\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"207.32\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"207.32\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"296.67\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.44\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.28\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.59\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"201.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.59\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"268.24\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"268.24\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"268.24\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"184.55\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.79\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.79\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.76\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.47\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.79\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.79\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.76\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.47\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.63\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.47\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"205.85\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.65\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.65\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.76\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.79\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"103.79\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.91\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.91\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.13\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.79\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.79\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"146.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.53\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.26\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.26\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.79\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.79\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"224.93\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.71\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.70\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.86\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.51\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.51\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"264.21\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.67\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.10\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"215.66\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"239.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"239.13\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"186.37\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.31\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.38\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.38\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"117.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"117.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.61\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.61\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.44\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.38\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.54\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.54\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"203.53\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.73\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.57\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.60\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.43\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.10\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.10\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"212.86\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.48\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.48\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.79\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.11\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.11\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"191.70\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.84\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.96\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.19\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.35\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.73\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.73\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.96\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"316.92\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"88.53\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.53\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.28\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.12\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.96\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.80\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.80\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"285.48\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"285.48\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"88.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.53\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.12\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.96\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"195.96\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"255.64\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"255.64\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"268.80\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"236.55\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.71\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.71\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.91\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"61.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.81\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.81\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.71\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.71\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.61\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"154.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"247.18\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.54\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.54\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.24\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"214.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.24\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"258.01\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.15\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.15\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"182.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"212.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"284.29\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.20\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.23\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.71\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"191.03\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.03\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"216.28\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"216.28\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"216.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"242.30\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"242.30\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"242.30\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.47\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.03\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.03\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"164.50\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"69.98\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.11\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"190.06\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.79\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"129.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"151.99\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.82\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.82\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.41\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.41\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.99\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.99\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"203.73\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.26\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.63\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.43\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.02\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"164.05\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.63\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.63\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.22\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.22\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.05\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.05\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"216.09\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.45\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.28\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.28\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.28\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.24\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.65\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"113.65\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.86\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"138.86\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.07\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"164.07\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"189.28\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"189.28\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"273.66\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.24\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"171.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"194.74\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"218.22\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"248.58\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.76\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.76\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.27\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"171.27\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.27\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"218.22\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"218.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"188.26\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.73\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.49\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.82\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.64\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"95.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.67\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"121.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.58\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"142.58\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"245.55\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.83\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"91.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"121.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.39\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.91\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"213.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.83\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.83\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.87\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.91\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"182.91\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"197.12\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.81\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.81\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.81\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.81\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.36\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.36\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.42\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.19\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.58\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.58\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.97\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.97\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.36\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"172.36\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"154.08\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"45.05\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"65.71\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.42\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"246.82\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"75.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"97.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"123.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"144.95\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"188.55\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"210.34\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"75.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.16\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.75\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"210.34\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"197.15\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.09\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.08\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"133.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"159.35\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.70\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.70\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.35\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.35\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"209.51\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.30\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.57\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.57\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.64\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.64\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.64\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.64\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.30\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.30\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.83\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"110.83\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.10\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"135.10\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.37\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.37\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.64\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"183.64\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"202.01\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.69\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.33\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.97\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.19\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.03\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.19\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.19\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.69\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.69\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.97\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.19\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.19\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"203.18\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.03\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.60\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.60\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.60\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.60\" default-y=\"15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.99\" default-y=\"15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.39\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.39\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.39\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.39\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.78\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.18\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.18\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.18\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.18\" default-y=\"5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.03\" default-y=\"-75.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-130.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.78\" default-y=\"-75.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"256.31\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"75.33\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.33\" default-y=\"5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.65\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.65\" default-y=\"-10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.65\" default-y=\"0.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.67\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.67\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.67\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"75.33\" default-y=\"-125.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"103.99\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.65\" default-y=\"-90.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.30\" default-y=\"-80.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"191.67\" default-y=\"-80.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"223.43\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.64\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.81\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.81\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.98\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.32\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"143.32\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.32\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.66\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.81\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"169.49\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.49\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"171.38\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"72.61\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.75\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.76\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"196.94\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.83\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.70\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"133.37\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"157.20\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.86\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.86\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.53\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"109.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.20\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"210.61\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.49\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.88\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"142.93\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"168.96\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.91\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.96\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.96\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"301.08\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"75.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"103.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.39\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.39\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.39\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.39\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"271.46\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"271.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"271.46\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"271.46\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"75.33\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.37\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.37\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.37\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.40\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"187.40\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.42\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.42\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"243.44\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"243.44\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"271.46\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"271.46\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"242.54\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.49\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"90.51\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"120.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.55\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.56\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"210.93\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.49\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.49\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.49\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.53\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.56\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"180.56\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"228.88\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.73\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.73\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.73\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.73\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.37\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.37\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.37\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.82\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.64\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"119.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.55\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.55\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.46\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.46\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"200.37\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"200.37\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"286.17\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.38\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.25\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"141.11\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"176.98\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"212.84\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"248.71\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.38\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.22\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.38\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.11\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"141.11\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"212.84\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"212.84\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"278.69\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"75.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"101.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"151.57\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.57\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.57\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"251.98\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"251.98\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"251.98\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"251.98\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"75.33\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.33\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.67\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"176.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"201.78\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.78\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"226.88\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"226.88\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"251.98\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"251.98\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"172.31\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.34\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"72.68\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"96.02\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"189.33\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.68\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.71\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.39\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.75\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"151.44\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.07\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.44\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.44\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"202.99\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.50\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"137.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"163.52\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.50\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.50\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.83\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.83\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.52\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.52\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"215.35\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.24\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.24\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.65\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.65\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.65\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.13\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.34\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"113.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.44\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"138.44\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.55\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.55\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.65\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"188.65\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"271.11\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"155.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"182.30\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"182.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.30\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.30\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.91\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"212.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.91\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.91\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.80\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.30\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"182.30\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"225.91\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"225.91\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"200.54\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.39\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.96\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.96\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.96\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.96\" default-y=\"15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.95\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.95\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.95\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.95\" default-y=\"15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.95\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.95\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.95\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.95\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.94\" default-y=\"10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.94\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.94\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.94\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.94\" default-y=\"5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.39\" default-y=\"-75.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.95\" default-y=\"-130.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.95\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-95.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.94\" default-y=\"-75.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"176.88\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-10.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.90\" default-y=\"0.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.29\" default-y=\"-25.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.29\" default-y=\"-15.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.29\" default-y=\"-5.00\" dynamics=\"124.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.45\" default-y=\"-105.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.90\" default-y=\"-90.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.93\" default-y=\"-80.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"119.29\" default-y=\"-80.00\" dynamics=\"124.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"207.34\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.57\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.10\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"109.10\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.13\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.13\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.20\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"182.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-75.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"158.67\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.67\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"202.80\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.85\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.85\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.86\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.86\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.86\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.86\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.85\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"98.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.21\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.21\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.21\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"177.21\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"296.67\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.44\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.28\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.59\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"201.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.59\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"268.24\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"268.24\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"268.24\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.12\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"184.27\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"241.42\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"184.55\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.79\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.79\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.76\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.47\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.79\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.79\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.11\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.76\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.47\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.63\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.47\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"205.85\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.65\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.65\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.76\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.79\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"103.79\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.91\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.91\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.13\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.65\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.79\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.79\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"146.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.53\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.26\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.26\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.53\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.79\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.79\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"224.93\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.71\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.70\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.86\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.51\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.51\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.39\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.68\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"264.21\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.67\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.10\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"215.66\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"239.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"239.13\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.15\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.10\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.66\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"186.37\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.31\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.38\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.38\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"117.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"117.47\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.61\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.61\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.31\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.44\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.38\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.54\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.54\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"203.53\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"51.73\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.57\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.57\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.60\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.43\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.10\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.10\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.60\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.26\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"212.86\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.48\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.48\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.79\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.11\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.11\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.32\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.63\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.95\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"191.70\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.84\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.96\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.19\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.35\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.73\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.73\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.21\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.96\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"316.92\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"88.53\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.53\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.28\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.12\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.96\" default-y=\"35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.80\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.80\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"285.48\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"285.48\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"88.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.53\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.12\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.28\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.96\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"195.96\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"255.64\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"255.64\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"268.80\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"236.55\">\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.71\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.71\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.51\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.91\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"61.91\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.81\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.81\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.71\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.71\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.61\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"154.61\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.51\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"247.18\">\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.54\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.54\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.22\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.22\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.89\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.56\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.24\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"214.91\" default-y=\"20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.54\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.89\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"184.24\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"258.01\">\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"61.05\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.15\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.15\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"182.52\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"212.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.05\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.79\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"182.52\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"226.04\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"314.78\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"84.20\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.20\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"114.30\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.50\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.66\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"204.82\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"234.92\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"234.92\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"234.92\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"265.02\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"265.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"265.02\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.20\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.40\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.40\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.40\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.82\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"221.66\">\n      <note default-x=\"12.47\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"168.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.16\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.32\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.36\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.36\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.26\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.16\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.16\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"279.38\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.63\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"78.63\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.63\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.76\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"106.76\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.76\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.90\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"134.90\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.90\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.16\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"191.16\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"219.29\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"219.29\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"249.65\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"249.65\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"50.50\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.50\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.76\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.76\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.76\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.03\" default-y=\"-140.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.03\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"219.29\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"219.29\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"242.85\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.05\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"64.05\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.58\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.58\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.58\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"211.71\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"211.71\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"211.71\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.05\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.21\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.05\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.12\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.65\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.18\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"211.71\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"282.93\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.73\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.73\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.73\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.10\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"123.10\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.10\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.12\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"149.12\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.12\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.67\" default-y=\"-30.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"199.67\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.69\" default-y=\"-25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"225.69\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"256.06\" default-y=\"-25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"256.06\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.10\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.26\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.10\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.40\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.40\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"225.69\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"238.86\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"225.69\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"214.09\">\n      <note default-x=\"38.83\" default-y=\"-20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"25.67\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.83\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.83\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.33\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.33\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.33\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.33\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.54\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.25\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.61\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.33\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.04\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"177.75\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"187.26\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.02\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.02\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.02\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.05\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.05\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.05\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.07\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.07\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.07\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.11\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.11\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.14\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.14\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.50\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.50\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.05\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.05\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.05\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.14\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.14\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.14\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"171.26\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"44.61\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.98\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.98\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.98\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.98\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.50\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.50\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.50\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.50\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.61\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.36\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"105.74\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"126.12\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.50\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"203.13\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.45\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.45\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.91\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.91\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.94\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"91.94\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.94\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.94\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.75\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"143.75\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.20\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.20\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.20\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.20\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.91\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.91\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.07\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.39\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.39\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.20\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.20\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.37\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"232.28\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.32\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.32\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.94\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.11\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.11\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.32\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.32\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.11\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.11\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.89\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.89\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"206.51\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.22\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.22\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.22\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.44\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"58.44\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.44\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.66\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"81.66\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.66\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.10\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.10\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.32\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.32\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.69\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"181.69\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.44\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.44\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.44\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.88\" default-y=\"-140.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.88\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.32\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.32\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"208.47\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.81\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"56.81\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.82\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.82\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.82\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"181.86\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"181.86\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"181.86\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.81\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"69.98\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.81\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.83\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.84\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.85\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"181.86\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"209.51\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.20\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"44.20\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.59\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.59\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.97\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.36\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"137.75\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"137.75\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"184.52\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.52\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.52\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"184.52\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.59\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.36\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.13\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"201.91\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.79\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.79\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.79\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.79\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.55\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.55\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"159.55\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.84\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.31\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"118.79\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.55\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.55\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"232.01\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.37\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.37\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.15\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.15\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.93\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.70\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.70\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.25\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"207.25\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.37\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.37\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.37\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.93\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"141.93\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.48\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.48\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"227.15\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.91\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.91\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.45\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.45\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.27\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.27\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.27\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.91\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"71.91\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.91\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.27\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.27\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"210.80\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.84\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.16\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.84\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.84\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.68\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"137.68\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.68\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.36\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.36\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.16\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.16\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.16\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.84\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.52\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.69\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.52\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"159.32\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.86\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.86\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.86\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"121.29\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.13\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.29\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.43\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.43\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.86\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.86\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.29\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.29\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"229.38\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.37\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"55.37\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.37\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.05\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.05\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.05\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.72\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"102.72\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.72\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.07\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.07\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.74\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.74\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.11\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"204.11\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"31.70\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"31.70\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.05\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.05\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.05\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.40\" default-y=\"-140.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.40\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.74\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.74\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"250.26\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"76.73\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.73\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.73\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.80\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"112.80\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.34\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.34\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.34\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.50\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.50\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.50\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"76.73\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.73\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.80\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.96\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.80\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.88\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"180.42\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"202.96\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"225.50\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"232.50\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.20\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"41.20\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.20\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.56\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.56\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.56\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.59\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.59\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.59\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.87\" default-y=\"-30.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.87\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.90\" default-y=\"-25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"174.90\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"205.26\" default-y=\"-25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"205.26\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.56\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.72\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.56\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.23\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.23\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.90\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.06\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.90\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"215.19\">\n      <note default-x=\"38.83\" default-y=\"-20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"25.67\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.83\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.83\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.83\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.83\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.83\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.83\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.59\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.95\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.83\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.71\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"178.58\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"188.36\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.21\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.21\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.21\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.41\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.41\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.41\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.62\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.62\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.62\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.03\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"113.03\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.24\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.24\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.60\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"163.60\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.41\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.41\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.41\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.83\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.83\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.24\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.24\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.24\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"172.36\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"44.87\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.42\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.42\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.42\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.42\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.60\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.60\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.60\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.60\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.87\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.96\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"106.51\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.05\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.60\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"269.81\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.05\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"88.05\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.57\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.57\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.59\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"149.59\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.59\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.59\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.47\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"204.47\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"228.99\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"228.99\" default-y=\"5.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"228.99\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"228.99\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.57\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.57\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.73\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.11\" default-y=\"-155.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.11\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"228.99\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"228.99\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"242.15\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"176.65\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.44\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.44\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.44\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.17\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.00\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.17\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.17\" default-y=\"30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.44\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.17\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.61\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.61\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"202.41\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.55\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.55\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.55\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.10\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.64\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.64\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.64\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.74\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"124.74\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.29\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.29\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.65\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"177.65\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.19\" default-y=\"-140.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.19\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.29\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.29\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"204.37\">\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.95\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"55.95\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.42\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.42\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"80.42\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.30\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.30\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.30\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.95\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"69.11\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.95\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.89\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.36\" default-y=\"-120.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.83\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.30\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"205.41\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.20\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"44.20\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.94\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.94\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.68\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.43\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"135.17\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.17\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.65\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.65\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.65\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.65\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.94\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.43\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.91\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"258.03\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.54\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.54\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.54\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.54\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"214.49\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"214.49\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"214.49\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.90\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"120.11\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.33\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"172.54\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"214.49\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"214.49\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"181.90\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.19\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.19\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.18\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.18\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.16\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.16\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.14\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"157.14\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.19\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.19\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.19\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.15\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.15\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"228.57\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.14\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.14\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.91\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"101.91\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.69\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.69\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.69\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.33\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.33\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.33\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.69\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.69\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.33\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.33\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"212.22\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.04\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.04\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.04\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.37\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"53.20\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.37\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.41\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"114.45\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.50\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.50\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.58\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"186.58\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"186.58\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.37\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.37\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.37\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.37\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.45\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"162.54\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"175.70\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.54\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"177.94\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.88\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.88\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"153.18\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.94\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.88\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.88\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.82\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.82\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.18\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"153.18\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"259.66\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"93.86\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"80.70\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.86\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.52\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"168.84\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.68\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.84\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.57\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"234.89\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"221.73\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"234.89\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.19\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.19\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.84\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"168.84\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.57\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"217.73\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.57\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"220.88\">\n      <note default-x=\"16.76\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.36\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.69\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.52\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.69\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.28\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"120.88\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.48\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.08\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"194.68\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.69\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.85\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.69\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.88\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.88\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.08\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.25\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.08\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"168.64\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"31.98\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.98\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.98\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.94\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"91.92\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.92\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.92\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"143.87\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.87\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.87\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.96\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.96\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.96\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.92\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.92\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"202.96\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.67\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.34\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.34\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.34\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.01\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"106.68\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.35\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"154.02\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.69\" default-y=\"35.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.34\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.34\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.34\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.68\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.68\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.02\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"206.53\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"40.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.62\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.24\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.86\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"82.86\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.11\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"130.11\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"167.14\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.14\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.41\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.14\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.14\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.14\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.30\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"263.27\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.95\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.37\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.74\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.74\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.74\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.16\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.16\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"170.16\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.57\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.57\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.57\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.99\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"220.99\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"220.99\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.37\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.37\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.37\" default-y=\"-70.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.16\" default-y=\"-160.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"170.16\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.99\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"234.16\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.99\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"185.84\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.70\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.93\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.93\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.16\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.16\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.16\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.62\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.62\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.08\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.08\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.93\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.93\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.93\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.93\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.39\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.39\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.85\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"181.41\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.12\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"47.16\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.14\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.14\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.12\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.29\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.29\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.65\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"156.65\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"207.69\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"29.16\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.75\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"117.07\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.91\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.07\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.61\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"182.93\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.77\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"182.93\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.54\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"77.70\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.54\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.07\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.07\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.61\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.77\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.61\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"220.46\">\n      <note default-x=\"16.76\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"41.30\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.62\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.46\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.62\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.16\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"120.70\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.24\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.78\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"194.32\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.62\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.79\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.62\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.70\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"120.70\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.78\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"182.94\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.78\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"227.44\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"84.62\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"84.62\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.62\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.78\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"147.86\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.86\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.86\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.59\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"202.68\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"202.68\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"202.68\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.70\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.70\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.70\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.86\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.86\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.59\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.59\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.59\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"210.23\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.58\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.16\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.16\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"61.16\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.74\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.31\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"134.89\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.47\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"184.05\" default-y=\"35.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.16\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.16\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.16\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.31\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.31\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.47\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.47\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.47\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"213.80\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"40.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.72\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.45\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.17\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.17\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.61\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"135.61\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.64\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.64\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.45\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.45\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.45\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.61\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.64\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.64\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.64\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"219.43\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.59\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.17\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.53\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.53\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.53\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.12\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.12\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.12\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.71\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.71\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.71\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.29\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"175.29\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"175.29\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.17\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.17\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.17\" default-y=\"-70.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.12\" default-y=\"-160.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.12\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.29\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.45\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.29\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"187.77\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.46\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.46\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.44\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.44\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.42\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.99\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.45\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.43\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.43\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"224.58\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.15\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.15\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.15\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"199.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.84\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.84\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.15\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.15\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.46\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"169.46\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.82\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"199.82\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"216.49\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"29.16\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.99\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"121.31\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.15\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.31\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.24\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"190.56\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.40\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"190.56\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.65\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.82\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.65\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.31\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.31\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.24\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.40\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.24\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"229.25\">\n      <note default-x=\"16.76\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"3.60\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.76\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.56\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.88\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.72\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.88\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.68\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"124.47\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.27\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"176.06\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.86\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.76\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.88\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"86.04\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.88\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.47\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.47\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.06\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"189.23\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.06\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"177.01\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"33.25\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"33.25\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.25\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.75\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"97.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"152.25\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.25\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.25\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.50\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.50\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.50\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.00\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.00\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"211.33\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.72\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.43\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.43\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"61.43\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.15\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.87\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.58\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"160.30\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"185.01\" default-y=\"35.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.43\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.43\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.43\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.87\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.87\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.30\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.30\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.30\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"260.51\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"40.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.53\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"111.52\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"135.51\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.51\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.49\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"183.49\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"220.52\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.52\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.52\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.52\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.52\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.68\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.50\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.50\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.52\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"220.52\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.52\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"233.68\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"214.60\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.85\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.71\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.07\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.07\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.07\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.93\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.93\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"119.93\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.78\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"145.78\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"145.78\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.64\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.64\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.64\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.71\" default-y=\"-70.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.93\" default-y=\"-160.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.93\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.64\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"184.80\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.64\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"188.71\">\n      <note default-x=\"12.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.47\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.47\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.11\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.75\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.75\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.39\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.39\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.67\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.67\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.95\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.95\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.75\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.75\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.03\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.03\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.31\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"184.28\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.11\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.11\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"159.52\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.05\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"48.05\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.58\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.58\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.11\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.16\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.16\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.52\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"159.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"210.57\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"29.16\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.34\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"118.67\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.50\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.67\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.48\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.64\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"185.80\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"78.49\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.67\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.67\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.48\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.64\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.48\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"278.33\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"76.70\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.70\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.94\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.26\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.10\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.26\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.51\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"179.75\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"204.00\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"228.24\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"252.48\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"76.70\" default-y=\"-145.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.70\" default-y=\"-110.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.26\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.42\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.26\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.75\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"179.75\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"228.24\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"241.40\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"228.24\" default-y=\"-85.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"166.15\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"31.60\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.60\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.60\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.81\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"90.42\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.42\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.42\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.78\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.39\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.39\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.39\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.21\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.21\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.21\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.42\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.42\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.78\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.78\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.78\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"200.47\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"35.36\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.72\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.72\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"58.72\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.08\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.44\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.80\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"152.15\" default-y=\"20.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.51\" default-y=\"35.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.72\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.72\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.72\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.44\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.44\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.15\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.15\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.15\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"204.04\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"40.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.24\" default-y=\"15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.49\" default-y=\"25.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.73\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"81.73\" default-y=\"35.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.22\" default-y=\"-5.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"128.22\" default-y=\"30.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.25\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.25\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.49\" default-y=\"-105.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.49\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.49\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.65\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.98\" default-y=\"-170.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.98\" default-y=\"-135.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.25\" default-y=\"-100.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.25\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.25\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.41\" default-y=\"-75.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"209.67\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.11\" default-y=\"0.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.22\" default-y=\"10.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"92.58\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.58\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.58\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.68\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.68\" default-y=\"20.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.79\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.79\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"142.79\" default-y=\"15.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"167.90\" default-y=\"-15.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"167.90\" default-y=\"0.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"167.90\" default-y=\"10.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.22\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.22\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.22\" default-y=\"-70.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-160.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.68\" default-y=\"-125.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.90\" default-y=\"-95.00\" dynamics=\"71.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.06\" default-y=\"-90.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.90\" default-y=\"-80.00\" dynamics=\"71.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"577.89\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"72.40\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.40\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.40\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"138.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"271.30\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"271.30\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"403.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"403.91\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"470.21\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"470.21\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"470.21\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"72.40\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.40\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.00\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"337.61\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"337.61\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"470.21\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"470.21\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"480.78\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"362.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"362.38\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"362.38\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"362.38\" default-y=\"35.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.79\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"245.59\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/strenous.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"204.08\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"74.93\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.93\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.73\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.73\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.57\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"157.57\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.32\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"179.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"175.47\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.48\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"34.48\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.96\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.96\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.45\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.93\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.90\" default-y=\"-65.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.90\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note>\n        <rest/>\n        <duration>8</duration>\n        <voice>5</voice>\n        <type>half</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"145.01\">\n      <note default-x=\"15.00\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.67\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.67\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.74\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.74\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.74\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.67\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.67\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.74\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.74\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"166.01\">\n      <note default-x=\"12.00\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.20\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.20\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.04\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.20\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.20\" default-y=\"-180.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.20\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"175.47\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.80\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"47.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.59\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.96\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.34\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.71\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.80\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.59\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.34\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.34\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.34\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"192.63\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.53\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.80\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.34\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"145.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"167.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.53\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.07\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"145.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.60\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"241.53\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.65\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.65\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.73\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"148.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.92\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.92\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.42\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"207.42\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"94.96\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"94.96\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.96\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.92\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"207.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"207.42\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"207.42\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"157.53\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.64\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.64\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.81\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.81\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.76\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.76\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"157.53\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.81\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.76\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"168.93\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.21\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.62\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"108.03\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.60\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.60\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.41\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.83\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.83\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.83\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.60\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"175.63\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.01\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"34.01\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.23\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"69.23\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.23\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.59\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.59\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.59\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.82\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.82\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.59\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.59\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.82\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.82\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"157.53\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"43.17\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.64\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.81\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.81\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.76\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.76\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"195.34\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.33\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"114.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.08\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.83\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"170.58\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.33\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.33\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.83\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.83\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.83\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"170.17\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.06\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.12\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.18\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"145.41\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.12\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.12\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.12\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.23\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.35\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"194.68\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"104.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.85\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.85\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.96\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.89\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.85\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.96\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.96\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"130.09\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"70.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.37\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.12\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.12\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.24\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.37\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.37\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"160.45\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.49\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.22\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.22\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.22\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.69\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.69\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.69\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.35\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.35\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.82\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.82\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.82\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"207.93\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.48\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.96\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.44\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.01\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"102.01\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.01\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.37\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.37\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.37\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.01\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"183.17\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.01\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.01\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.85\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.85\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"257.18\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.36\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"91.36\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.76\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"143.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.79\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.79\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.62\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.62\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.19\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.19\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.79\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"169.79\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"217.45\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"198.54\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.60\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.60\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.93\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.93\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.27\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"75.27\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.60\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"99.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.94\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"123.94\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.27\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.27\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.60\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"172.60\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"181.37\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.28\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.28\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.57\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.87\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.17\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.28\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.28\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.28\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.57\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.17\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.17\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.17\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"198.54\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.11\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"81.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"127.55\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.77\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.22\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.44\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"223.04\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.90\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"36.90\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.57\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"115.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.76\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"141.76\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.60\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"61.80\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.80\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.80\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.76\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"181.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.60\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.60\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"206.80\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.29\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"87.29\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.89\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.85\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.44\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.44\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.04\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"182.04\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"164.47\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.91\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.51\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.71\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.91\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"175.87\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.26\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.52\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"72.78\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.52\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.52\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.52\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.04\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.04\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.04\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.86\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"182.58\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.66\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.66\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"73.52\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.52\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.11\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.89\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.11\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"164.47\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.56\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.56\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.51\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"98.51\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.71\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"139.71\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"164.47\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.91\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.51\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"139.71\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.91\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.11\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"243.11\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"77.73\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"124.52\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"171.32\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"194.71\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"218.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.13\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.13\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.92\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"194.71\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.71\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"194.71\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"225.28\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"37.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.43\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"116.59\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.62\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.62\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.15\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.15\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.66\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.66\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.66\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.62\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.15\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.15\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.15\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"160.69\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.54\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"85.54\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.32\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.77\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.77\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.54\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.54\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.32\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.32\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"191.05\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.61\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.61\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.23\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"55.23\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.84\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.84\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.84\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.07\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.07\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.29\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"166.29\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.23\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.23\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.23\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.46\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.46\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.67\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.67\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.67\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"238.54\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"39.14\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.28\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.41\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"121.98\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.98\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.98\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.34\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"152.34\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.34\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"196.64\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"209.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.28\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.28\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.28\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.98\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.98\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.48\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.48\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"234.53\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.32\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.70\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.48\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"181.48\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.27\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"201.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.11\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.11\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.11\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.70\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.70\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"201.27\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"201.27\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"150.57\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.79\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.79\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.19\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"125.81\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.40\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.40\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.79\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.79\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"197.39\">\n      <attributes>\n        <key>\n          <fifths>1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"33.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"33.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"53.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"53.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.13\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"93.13\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"132.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.75\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.75\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.63\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"172.63\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"33.50\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.25\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"73.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.00\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.75\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.75\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"158.73\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"29.42\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"46.85\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"64.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"99.12\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"133.96\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.85\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.85\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.69\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"116.54\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"116.54\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.54\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"175.89\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.63\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"71.63\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.25\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.13\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.13\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.75\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.75\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.50\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.25\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"141.56\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.85\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.70\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.86\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"116.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.85\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.70\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.64\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.64\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"265.54\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"89.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"143.77\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"191.84\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"239.91\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"181.85\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.91\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"212.21\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.18\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"186.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.14\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.37\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"200.06\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.71\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.87\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.74\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.62\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"171.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"199.01\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.18\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.18\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"81.53\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.23\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.35\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.51\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.22\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"207.80\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.50\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"116.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"149.93\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"183.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.77\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.70\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.76\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"151.18\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.51\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.43\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"184.79\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"160.03\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"267.61\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-55.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.58\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"133.98\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"160.39\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.79\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"213.20\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"239.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"226.76\">\n      <attributes>\n        <key>\n          <fifths>1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"33.50\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"33.50\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.46\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"57.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.37\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"105.37\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.29\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.29\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.25\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.25\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.20\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"201.20\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"33.50\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"81.42\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"81.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.58\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.33\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.25\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.25\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"190.41\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"188.10\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.62\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.86\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"120.10\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"163.34\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.48\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"141.72\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.72\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.72\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"205.26\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.96\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.96\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"83.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.83\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.83\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.79\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.79\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.75\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.75\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"179.70\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"59.92\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.92\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.08\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.83\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.75\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.75\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.91\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"170.94\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.25\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.89\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"146.18\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.63\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.25\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"265.54\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"89.37\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"143.77\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"191.84\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"239.91\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.40\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"167.80\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.87\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"181.85\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.18\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.09\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.45\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.91\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"212.21\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.18\" default-y=\"10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"186.57\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.14\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.37\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.21\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"200.06\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.71\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.87\" default-y=\"10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.74\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.62\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"171.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.87\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.74\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"199.01\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.18\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.18\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.53\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"81.53\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.23\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.23\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.35\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.51\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.70\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.22\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"207.80\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.50\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"116.82\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"149.93\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"183.04\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.66\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.77\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.88\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.70\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.76\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"151.18\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.75\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.51\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.42\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.26\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.33\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"171.63\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.43\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.74\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"184.79\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.27\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"69.80\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.33\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.87\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"160.03\" default-y=\"-45.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.07\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.60\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"189.37\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.33\" default-y=\"-55.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.55\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.55\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.55\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.33\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.55\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.55\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"175.83\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"29.17\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.62\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"60.62\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.08\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.74\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.40\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.07\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"29.17\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.62\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.62\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.62\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.08\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.40\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.40\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.40\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"175.82\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.87\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.60\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.19\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.06\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.73\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.46\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.19\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.19\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.19\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"200.33\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.53\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"32.53\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.83\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"106.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.02\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.02\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.87\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.87\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.07\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.07\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.07\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.02\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"165.87\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.87\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.87\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"158.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.12\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.12\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.58\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"94.58\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.90\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"133.90\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"158.66\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.92\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.58\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.46\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.92\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.24\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"208.40\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"73.11\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"91.88\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.65\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.20\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"176.76\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"176.76\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.76\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"91.88\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"91.88\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.88\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.43\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.43\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.43\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.76\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"176.76\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"172.77\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.33\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"33.33\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.33\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.45\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"67.45\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.45\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.05\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.05\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.05\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.05\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.05\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"154.67\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>8</duration>\n        <voice>1</voice>\n        <type>half</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-180.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.44\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"61.44\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.87\" default-y=\"-150.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"91.87\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-155.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.90\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"129.90\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"154.67\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.85\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"91.87\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.90\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"42.43\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.85\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"171.83\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.30\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.89\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.48\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.77\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.59\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.18\" default-y=\"-120.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.77\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"127.77\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.77\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"196.33\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.77\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"31.77\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.29\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"105.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.48\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.48\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.53\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.53\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.53\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.48\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.11\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"184.11\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.42\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"118.42\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.47\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.47\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.38\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"86.38\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.42\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.42\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.47\" default-y=\"-135.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.47\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"172.14\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.46\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"30.46\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.93\" default-y=\"0.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"67.39\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.39\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.39\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.32\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.32\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.32\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.38\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.38\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.38\" default-y=\"15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.93\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.93\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.93\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.85\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"85.85\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.92\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.92\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.92\" default-y=\"-80.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"219.63\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.36\" default-y=\"5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"82.07\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.63\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"110.63\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.63\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.99\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"140.99\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.99\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.51\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"194.67\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.71\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.63\" default-y=\"-140.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.63\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.35\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"189.77\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.65\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"37.65\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.07\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"87.07\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.10\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.10\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.95\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.95\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.80\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.80\" default-y=\"-10.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.51\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.51\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.51\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.10\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.10\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.80\" default-y=\"-110.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.80\" default-y=\"-100.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"142.08\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.24\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.24\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.24\" default-y=\"20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.24\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.24\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"150.94\">\n      <attributes>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"31.70\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"116.66\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"31.70\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.66\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"206.60\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"83.18\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.83\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.48\" default-y=\"-25.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"142.13\" default-y=\"-15.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.56\" default-y=\"-50.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"83.18\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.83\" default-y=\"-115.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.48\" default-y=\"-105.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"142.13\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.56\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"156.01\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.06\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"43.06\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.47\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.47\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.29\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"101.29\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.35\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.35\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.06\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"81.88\" default-y=\"-90.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.35\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"132.14\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.64\" default-y=\"-35.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.64\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.64\" default-y=\"0.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-5.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.91\" default-y=\"-40.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.91\" default-y=\"-20.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.64\" default-y=\"-160.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.64\" default-y=\"-125.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.27\" default-y=\"-130.00\" dynamics=\"106.67\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.91\" default-y=\"-165.00\" dynamics=\"106.67\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"194.29\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.82\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.27\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"143.50\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.53\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.50\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"175.33\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.76\" default-y=\"-55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.76\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.76\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.76\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.52\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"83.52\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.52\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.87\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.22\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.57\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.76\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"83.52\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.22\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"194.29\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"82.82\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.27\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"149.30\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.53\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.59\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.05\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.30\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"255.67\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.68\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.14\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"227.61\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"201.14\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"208.39\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.34\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.73\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.43\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"204.14\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.15\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.61\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"176.07\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.61\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"208.39\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.34\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.73\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.43\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"182.07\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.27\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.67\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"157.07\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.67\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"245.55\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.90\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.24\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"174.59\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"194.76\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.79\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"194.76\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"175.06\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.68\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.29\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"159.59\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.41\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.63\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-175.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"131.87\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.70\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.70\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"171.95\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.31\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.94\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.56\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.88\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.19\" default-y=\"5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"174.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.11\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.04\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.97\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.89\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"234.85\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"87.10\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.68\" default-y=\"15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"134.25\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.82\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.82\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.53\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"195.53\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.68\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.84\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.68\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.82\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"195.53\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"195.53\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"175.16\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.01\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"73.77\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.53\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.55\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"222.54\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.21\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"144.06\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"169.49\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.52\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.49\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"203.58\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.22\" default-y=\"-55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.22\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.22\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.22\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.43\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"96.43\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.43\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.82\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.21\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.59\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.22\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.43\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.21\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"222.54\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.21\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"144.06\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"170.09\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.52\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.79\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.64\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.09\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"255.67\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.68\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.14\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"227.61\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.88\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.22\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"201.14\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"208.39\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.34\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.73\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.43\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"204.14\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.15\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.61\" default-y=\"-40.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"176.07\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.34\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.68\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.61\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"208.39\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.20\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.34\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"182.73\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.30\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.13\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.43\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.27\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.66\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"182.07\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.27\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.67\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"157.07\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.44\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.88\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.67\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"245.55\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"93.90\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.24\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"174.59\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"194.76\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.79\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.07\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"194.76\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"175.06\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-55.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-45.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-50.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.68\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.29\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.69\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"83.38\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.99\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"159.59\">\n      <note default-x=\"16.80\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.41\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"75.63\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.02\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.24\" default-y=\"-75.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.61\" default-y=\"-175.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"131.87\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.13\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.70\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.57\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.13\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.70\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"171.95\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.31\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.94\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.56\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"127.88\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.19\" default-y=\"5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.88\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"174.66\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.11\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.04\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"127.97\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.89\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.03\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.11\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"219.90\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"85.03\" default-y=\"20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"106.53\" default-y=\"15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"128.02\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"149.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.52\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.91\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.91\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.53\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.69\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.53\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.52\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.91\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.91\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"151.21\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.53\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"89.53\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.53\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.45\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"126.45\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.45\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"207.89\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.98\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.98\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.98\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.44\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"94.44\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.44\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.35\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"133.35\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.35\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.13\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"169.97\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.13\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.98\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"74.98\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.98\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.90\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"152.81\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.81\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.81\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"151.21\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.53\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"89.53\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.53\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.45\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"126.45\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.45\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.99\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"177.24\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.10\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.18\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"76.18\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.33\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.33\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.48\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"152.48\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.10\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.25\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.40\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.40\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.40\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"151.21\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"71.07\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.53\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"89.53\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.45\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"126.45\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.53\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.99\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"224.62\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"81.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.87\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.87\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.03\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"118.03\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.03\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.37\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"154.37\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"190.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.87\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.87\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.03\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.87\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.20\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"172.53\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.53\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.70\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.53\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"159.93\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.57\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.44\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.44\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.17\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"135.17\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.95\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.78\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.57\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.30\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"177.13\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.33\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"30.33\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.67\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"48.67\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"67.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.70\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.70\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.70\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.37\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"152.37\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.37\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.67\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.67\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.67\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.34\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.03\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.03\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.03\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"146.77\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.52\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.52\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.52\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"122.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.00\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"203.45\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.09\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.09\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.09\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.66\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"92.66\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.66\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.80\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"129.80\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.80\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.69\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"165.53\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.69\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.09\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"74.09\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.09\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.23\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"148.37\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.37\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.37\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"146.77\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.78\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.52\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.52\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.52\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"122.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.39\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.78\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.26\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"218.01\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.56\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.56\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.84\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"106.84\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.12\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.12\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.68\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"158.68\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.24\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"193.24\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-140.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.84\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.84\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.84\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.40\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"175.96\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"175.96\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"175.96\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"157.61\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.37\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.37\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.86\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.86\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.35\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"113.35\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.84\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.19\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.19\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.19\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.35\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"113.35\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.35\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"184.77\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.08\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"34.08\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"51.36\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"51.36\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.92\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.92\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"114.48\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.48\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.04\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"149.04\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.36\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.36\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.52\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.20\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.76\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"131.76\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.93\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"187.07\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.14\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"32.14\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"52.28\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.42\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"72.42\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.17\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"142.17\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.31\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"162.31\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.56\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.17\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.17\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.17\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"170.77\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.14\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"32.14\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.42\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"72.42\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.56\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.56\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.56\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.70\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.84\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.28\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.56\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.01\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"140.44\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.84\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.84\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.84\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.01\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"82.01\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.68\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"115.68\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.42\" default-y=\"-120.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.84\" default-y=\"-125.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.52\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"255.71\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.06\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"93.90\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.06\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.77\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"125.77\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.77\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.48\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"144.48\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.48\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.91\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"181.91\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.91\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.95\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"217.78\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.95\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.77\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.77\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.77\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.20\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"200.62\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"200.62\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"200.62\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"147.49\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.01\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.01\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.01\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.73\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"122.73\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.73\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.15\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.87\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"173.52\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.48\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"56.48\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.94\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.94\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.85\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"111.85\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.76\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"148.76\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.48\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.48\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.48\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.39\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.30\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.30\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.30\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"147.49\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.15\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.01\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"87.01\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.73\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"122.73\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.57\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.15\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.87\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"173.81\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.27\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"30.27\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"48.54\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"48.54\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.81\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"66.81\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"66.81\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"103.35\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"103.35\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.89\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"139.89\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.54\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.54\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.70\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.54\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"85.08\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"121.62\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"121.62\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.78\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"121.62\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"160.65\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.94\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.94\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.94\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.92\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.92\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.89\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"135.89\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.97\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.97\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.13\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.97\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.94\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.91\" default-y=\"-155.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"228.04\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.76\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"81.76\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.23\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"118.23\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.82\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"166.82\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.82\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"203.28\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"203.28\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"203.28\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.00\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.00\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.46\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"185.05\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.05\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.05\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"146.15\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.10\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.10\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.10\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.39\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"121.39\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.39\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"202.83\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.52\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.97\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.97\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.97\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.41\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"92.41\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.41\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.30\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"129.30\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.30\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.07\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"164.91\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.07\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.97\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"73.97\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.97\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.86\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.75\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.75\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.75\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"146.15\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.46\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.10\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.10\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.10\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.39\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"121.39\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.39\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.23\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.46\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.74\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"172.18\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.03\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"38.03\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.26\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"56.26\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.49\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"74.49\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.95\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"110.95\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.42\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"147.42\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.26\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.26\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.26\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.72\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.18\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.18\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.18\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"163.31\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.32\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.32\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.73\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"97.73\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.14\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.14\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.55\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"138.55\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"44.66\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.66\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.66\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.32\" default-y=\"-165.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.14\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.14\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.14\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"149\" width=\"327.24\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"76.73\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.73\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.42\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"107.42\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.10\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"138.10\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.78\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"168.78\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"230.15\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"230.15\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"291.52\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"291.52\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"76.73\" default-y=\"-160.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.10\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.10\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.26\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.47\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"260.83\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"260.83\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"274.00\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"150\" width=\"269.61\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"44.00\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.00\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.00\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.00\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.00\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.01\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"172.01\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.01\" default-y=\"-5.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.01\" default-y=\"30.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"236.01\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"236.01\" default-y=\"25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"76.00\" default-y=\"-110.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"76.00\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.00\" default-y=\"-90.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.01\" default-y=\"-135.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"204.01\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"204.01\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.01\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"151\" width=\"253.31\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.54\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"43.54\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.62\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"106.62\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.16\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.16\" default-y=\"-10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.16\" default-y=\"15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.70\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"169.70\" default-y=\"-15.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.70\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.24\" default-y=\"-30.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"201.24\" default-y=\"-20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"201.24\" default-y=\"5.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-80.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.16\" default-y=\"-130.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"201.24\" default-y=\"-100.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"214.40\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"201.24\" default-y=\"-85.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"152\" width=\"208.51\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"0.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"10.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"20.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"35.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"-185.00\" dynamics=\"54.44\">\n        <pitch>\n          <step>F</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.45\" default-y=\"-150.00\" dynamics=\"54.44\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/syncopations.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"270.82\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>-1</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"84.13\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"108.49\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.84\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.19\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"196.16\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"220.51\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"244.87\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"84.13\" default-y=\"-60.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"108.49\" default-y=\"-70.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"132.84\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.19\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"196.16\" default-y=\"-70.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"220.51\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"244.87\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"198.68\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.35\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.02\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.38\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.73\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.06\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.02\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.38\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.73\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"164.36\">\n      <note default-x=\"12.00\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"34.17\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"69.64\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"91.81\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.29\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"34.17\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"69.64\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"91.81\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.29\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"231.24\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.06\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.27\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.47\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.96\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.96\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.16\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.16\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.37\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.37\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"193.56\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.67\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"80.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"155.69\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.69\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.69\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.67\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.67\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.69\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.69\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"240.84\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.35\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"107.16\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.97\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.11\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"202.92\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"202.92\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"216.08\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.78\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"150.78\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"202.92\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"202.92\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"257.59\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.62\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.62\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.62\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.85\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.85\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.33\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"162.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"223.82\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"223.82\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.23\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"69.23\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"190.95\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.95\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"175.55\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.51\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.51\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.59\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.59\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.10\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.10\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.53\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.53\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.53\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.10\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.10\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.53\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.53\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"203.38\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.45\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.54\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.57\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.61\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.50\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.57\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.57\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.57\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"181.31\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.65\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.30\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.95\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.25\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.90\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.55\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.30\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.30\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.30\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.60\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.90\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.90\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.90\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"262.25\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"72.40\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"95.57\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.75\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"141.92\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"165.10\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"188.27\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"237.47\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"72.40\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.75\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.75\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.75\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.10\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"211.44\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"211.44\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"211.44\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"138.33\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"74.37\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.55\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.55\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"187.85\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.80\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"55.60\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.41\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.41\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.41\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"121.01\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"151.37\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.37\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.37\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.21\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.21\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.37\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.37\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"200.98\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.80\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"59.59\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.39\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"83.39\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.55\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.51\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"161.30\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.30\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.18\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.18\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"161.30\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.30\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"269.26\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.95\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.95\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.95\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.85\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.67\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.67\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"235.48\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"235.48\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.90\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"73.90\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.80\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.80\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"202.62\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"202.62\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"235.85\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.46\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.02\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.02\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.95\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.95\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.88\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"160.88\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.88\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.57\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"197.57\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.57\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.02\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"115.02\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.88\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"160.88\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"197.57\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"197.57\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"212.15\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.75\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"137.13\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"163.16\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"186.85\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.05\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.44\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.16\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.16\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.16\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"190.08\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.90\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"77.71\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"121.51\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"143.42\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.32\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.81\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.61\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.42\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.42\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.42\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"197.95\">\n      <note default-x=\"12.47\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.82\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"57.18\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.18\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"57.18\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.95\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"92.95\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.95\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.31\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.31\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"115.31\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.02\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"173.19\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.18\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.18\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.95\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.95\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.67\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.67\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"222.64\">\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"81.67\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.27\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"188.86\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.88\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.47\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.47\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.07\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"162.07\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"228.74\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.72\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"103.91\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.48\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"194.84\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.84\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"194.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.29\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.29\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"194.84\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"194.84\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"190.33\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.02\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"56.03\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.05\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"78.05\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.39\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"152.41\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.41\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.57\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.07\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"100.07\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"152.41\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.41\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"258.61\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.82\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.82\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.82\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.46\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.15\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.15\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.84\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"224.84\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.64\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"69.64\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"127.29\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"127.29\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.97\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"191.97\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"176.57\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.68\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.68\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.24\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.24\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.92\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.92\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.29\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.29\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.29\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.24\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.24\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.60\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.29\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.29\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"204.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.61\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.86\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"131.36\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"157.39\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.64\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.61\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.61\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.61\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.11\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"157.39\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"157.39\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.39\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"261.45\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"88.07\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"112.61\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"137.15\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"186.23\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"235.31\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.61\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.61\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.61\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.69\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"210.77\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"219.25\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.06\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.65\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"114.84\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"140.43\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"192.05\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.65\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.65\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.65\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.84\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.03\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.03\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.03\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"155.27\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.83\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"82.83\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.83\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.83\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.25\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.25\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"204.79\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.37\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"60.74\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.10\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"85.10\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.84\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"164.20\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.20\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.47\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.47\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.20\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.20\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"217.91\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"38.36\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"64.72\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.09\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"91.09\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"147.77\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"174.13\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.13\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.30\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.45\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.45\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.13\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.13\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"309.15\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.16\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.40\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.40\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.89\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.89\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"275.38\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"275.38\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.78\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.78\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.02\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"242.51\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"242.51\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"175.57\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.60\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.12\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.12\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.55\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.55\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.55\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.08\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.12\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.12\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.55\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.55\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"203.40\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.46\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.56\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.59\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.64\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.41\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.51\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.59\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.59\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.59\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"181.34\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.65\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.31\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.96\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.27\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.92\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.57\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.31\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.31\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.31\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.61\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.92\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.92\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.92\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"189.20\">\n      <note default-x=\"12.47\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.50\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"54.53\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.53\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.18\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"88.18\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.18\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.22\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.22\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.22\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.28\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.53\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.53\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.18\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.18\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.25\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.25\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"199.62\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-60.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.18\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"114.96\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.73\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"173.40\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.52\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"70.56\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"109.60\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"148.64\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.88\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.28\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"173.40\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.52\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.56\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.64\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"173.40\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.52\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.56\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.60\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"148.64\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.88\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.08\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.12\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.28\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"156.24\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"30.77\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.54\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"124.61\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.54\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.54\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.07\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"124.61\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.61\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"182.60\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.91\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.74\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.65\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"111.56\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.84\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.66\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.83\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.83\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.65\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.93\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"124.76\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"137.93\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"223.98\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"82.92\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.30\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"121.69\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"160.45\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"179.84\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"199.22\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"102.30\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.30\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.07\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"179.84\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.84\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.84\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"194.52\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.27\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.30\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.57\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"108.94\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"129.21\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"169.76\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"58.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.30\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.94\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.48\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.48\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"122.81\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.67\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.67\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.67\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.67\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"172.45\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.38\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"70.15\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"89.54\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.92\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"147.69\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.61\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.54\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"172.45\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.38\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.15\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.92\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.69\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.54\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"172.45\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.38\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"70.15\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"108.92\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"147.69\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"37.61\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.77\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.54\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.30\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"222.92\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.29\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"105.06\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"125.82\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"167.34\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.06\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.06\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.58\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.10\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"188.10\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"154.22\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.51\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.51\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.51\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.01\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.01\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.01\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.01\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"154.22\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.51\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"67.51\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.51\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"49.01\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.01\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.01\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"184.54\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.44\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.87\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"124.18\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"146.62\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.87\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"70.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.87\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.75\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"146.62\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.62\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.78\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"154.22\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.09\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"65.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.53\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"188.54\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.68\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.37\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"77.05\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"98.73\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"120.42\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"163.78\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"42.20\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.37\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.37\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.73\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.10\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.26\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.10\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"254.55\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"87.21\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"134.57\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"181.92\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"205.60\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"229.27\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.24\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"205.60\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"205.60\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"203.02\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.68\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.03\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.39\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.74\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.19\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.71\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"167.23\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"185.86\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.67\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"147.99\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.33\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.33\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.66\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"147.99\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.99\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"212.22\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.61\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"85.82\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.43\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"135.04\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"186.01\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"48.05\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.22\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.22\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.43\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.40\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.24\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.40\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"203.02\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.68\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.03\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.39\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.74\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.71\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.06\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"248.91\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"110.41\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"131.25\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"161.61\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"182.46\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"224.15\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.41\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.41\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.61\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"203.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"203.30\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"125.67\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.26\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"74.26\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.42\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.26\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.26\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"175.31\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.79\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.38\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"110.96\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"150.55\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.42\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.92\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"175.31\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.38\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"110.96\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.55\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"175.31\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.79\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"71.38\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"110.96\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.55\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"38.42\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.59\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.17\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"130.76\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.92\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"158.15\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.02\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.04\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.06\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.04\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.08\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.12\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.12\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"191.27\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"80.70\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.83\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.83\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"146.96\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.66\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.66\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.66\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.79\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.12\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"139.73\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.29\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"62.29\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.42\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.58\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.13\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.13\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.26\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.58\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.58\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"170.06\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.02\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.04\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"72.07\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.11\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"132.13\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.04\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.21\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.04\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.09\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.13\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.13\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.30\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"206.61\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.32\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.08\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.84\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.74\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.74\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.50\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"99.50\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.25\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.25\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"168.93\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.94\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"49.87\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"68.81\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"68.81\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.81\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.68\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"137.04\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.04\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.04\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.74\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.74\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"137.04\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.04\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"182.06\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.36\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.72\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.09\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"73.09\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.77\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"144.13\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.13\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.30\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.45\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"144.13\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.13\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"308.85\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.10\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.10\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.10\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.22\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"149.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.65\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"213.65\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"275.08\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"275.08\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.66\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"120.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.79\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.79\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"242.22\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"242.22\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"175.28\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.47\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.50\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"83.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.97\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.33\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.33\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"203.11\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"86.34\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"130.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"156.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.35\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.34\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.36\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.36\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.36\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"181.04\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.61\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.22\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.83\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"115.06\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.28\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.22\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.22\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.22\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"94.45\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.67\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"190.38\">\n      <note default-x=\"12.47\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.65\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.84\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"76.03\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.21\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"118.40\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"165.61\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.84\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.84\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.84\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.21\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.59\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"139.59\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.59\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"194.56\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.25\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.25\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.25\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"128.25\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.61\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.61\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"192.55\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.51\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"57.03\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"79.54\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.54\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.54\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.57\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"154.93\" default-y=\"-45.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.93\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.93\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.06\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.06\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"154.93\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.93\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"205.68\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.51\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"61.02\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.52\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"85.52\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.69\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.36\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"164.86\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.86\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.03\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.03\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"164.86\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.86\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"273.96\">\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.89\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.89\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.89\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.67\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.43\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"175.43\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"240.18\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"240.18\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.78\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.78\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.56\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.56\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"207.32\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"207.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"191.92\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"36.15\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.15\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"64.72\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.72\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"88.87\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.87\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.02\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.02\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.02\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.67\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.67\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.67\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.72\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.72\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.02\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"113.02\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.67\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.67\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"270.33\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"63.53\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"63.53\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.53\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.90\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.70\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"143.50\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"193.10\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"219.13\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"243.93\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"63.53\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.70\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.70\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.70\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.30\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"219.13\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"219.13\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"219.13\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"196.73\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.85\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.70\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.56\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"126.26\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"149.11\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.97\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.70\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.70\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.70\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.41\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.11\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.11\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.11\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"204.59\">\n      <note default-x=\"12.47\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.83\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"59.20\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.20\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.20\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.58\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"96.58\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.58\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.94\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"119.94\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.94\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"166.67\" default-y=\"-55.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"179.83\" default-y=\"-50.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.47\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.47\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.20\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.20\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.58\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"96.58\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.31\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.31\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"155.96\">\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.09\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"77.93\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.09\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.09\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"91.09\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"85\" width=\"231.06\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"29.17\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"29.17\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.20\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.24\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"104.28\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.35\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.42\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"29.17\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"79.24\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"79.24\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.24\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.31\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"179.38\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.38\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.38\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"86\" width=\"195.01\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.82\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.04\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"170.25\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.87\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"87\" width=\"196.20\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.18\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.54\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.72\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.90\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.44\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.72\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"136.10\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"88\" width=\"118.36\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.57\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.19\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.19\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.57\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.57\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"89\" width=\"196.20\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.18\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.36\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.54\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.72\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.90\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.36\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.72\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.10\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.26\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"90\" width=\"169.84\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.01\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.06\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.07\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"145.08\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.02\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.05\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.07\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.07\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"91\" width=\"183.04\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.79\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"74.69\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.59\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"116.49\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"158.28\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.79\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.79\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.59\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"137.38\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"137.38\" default-y=\"-70.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"92\" width=\"157.58\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.80\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.64\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.80\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.80\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.80\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"93\" width=\"191.05\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.04\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"56.08\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"78.12\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.17\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"122.21\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"144.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.29\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.08\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.08\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.08\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.17\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"144.25\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.25\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.25\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"94\" width=\"156.73\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.73\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"131.97\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.56\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.80\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.80\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.80\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"95\" width=\"200.25\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.85\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.71\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.56\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.42\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.27\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"152.64\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.49\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"175.49\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"57.71\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.71\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.71\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.42\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.47\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"152.64\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"152.64\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"96\" width=\"122.40\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.40\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"66.40\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.60\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.20\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.20\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.40\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"66.40\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.60\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"93.60\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"97\" width=\"230.65\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"67.56\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"92.75\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"117.94\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"148.30\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"203.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.56\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"67.56\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.56\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.94\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"173.50\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"173.50\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"173.50\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"98\" width=\"265.91\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"108.04\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.38\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"178.06\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"217.62\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"240.97\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.04\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.04\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.72\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"217.62\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"204.46\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.62\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"99\" width=\"205.14\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.94\" default-y=\"30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.88\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"83.83\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.77\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.71\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"155.65\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.59\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"59.88\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.88\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.77\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"155.65\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"155.65\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"155.65\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"100\" width=\"201.17\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"51.49\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.17\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"100.85\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"125.53\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"150.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"174.89\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"101\" width=\"215.64\">\n      <attributes>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        </attributes>\n      <note default-x=\"22.50\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"22.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.44\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"70.38\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"94.33\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"118.27\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"142.21\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"166.15\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"190.09\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"22.50\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.38\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"70.38\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.38\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.27\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"166.15\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"166.15\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"166.15\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"102\" width=\"170.81\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"31.15\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"50.30\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"69.45\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.75\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"146.05\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.30\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.30\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.60\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.90\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.90\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.90\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"103\" width=\"245.45\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"77.64\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"100.95\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"124.26\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"147.57\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"170.87\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"197.24\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.54\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"220.54\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.95\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.95\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.95\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.57\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"184.07\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"197.24\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"197.24\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"104\" width=\"125.27\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.84\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"67.84\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"39.92\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"67.84\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.84\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"105\" width=\"203.12\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"35.31\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"58.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"81.92\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.23\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.54\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"154.90\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"178.21\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.62\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"58.62\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"58.62\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.23\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"154.90\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.74\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.90\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"106\" width=\"176.76\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"72.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"132.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"151.99\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"132.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"107\" width=\"189.96\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.89\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.77\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"77.66\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"99.54\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"121.43\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"165.20\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.77\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.77\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.54\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.31\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.31\" default-y=\"-70.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"108\" width=\"118.11\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.06\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"56.90\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.06\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.06\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.06\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"109\" width=\"256.43\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"79.40\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"104.46\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.52\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"154.58\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"179.65\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.71\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"229.77\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.46\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.46\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.46\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.58\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"204.71\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"204.71\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.71\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"110\" width=\"179.78\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.86\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"73.29\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"114.15\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"155.02\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.86\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.86\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.86\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.72\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.58\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.58\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.58\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"111\" width=\"223.30\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"38.19\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.38\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"90.57\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"116.76\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"142.96\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.51\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.51\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.38\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"116.76\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"156.16\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"169.32\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.32\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"112\" width=\"145.45\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.93\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.96\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.93\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.93\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.89\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"113\" width=\"253.70\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.16\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.97\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.77\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"162.13\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"191.94\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"222.30\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.16\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"72.16\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.16\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.77\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"191.94\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"191.94\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.94\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"114\" width=\"247.30\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"104.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"124.01\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"163.32\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"202.88\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"222.54\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"104.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.67\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"202.88\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"189.72\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"202.88\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"115\" width=\"186.53\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.40\" default-y=\"30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"54.79\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"76.19\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"97.58\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.98\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"140.37\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"161.77\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.79\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"54.79\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.58\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"140.37\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.37\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.37\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"116\" width=\"133.88\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.58\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"109.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.12\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.79\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"38.79\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"38.79\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.58\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.58\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.38\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.38\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"117\" width=\"169.37\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"30.94\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.83\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.78\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.61\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.66\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.66\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"118\" width=\"152.21\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"95.47\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.47\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"127.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"127.45\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.30\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.30\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.28\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"110.28\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"119\" width=\"169.37\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"30.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"68.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"106.72\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.61\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.89\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.78\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.66\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.66\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"120\" width=\"203.14\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.05\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.94\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"142.94\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.22\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.22\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.22\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.66\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.66\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"121\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.17\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"122\" width=\"160.81\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.72\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.60\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"123\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.17\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"124\" width=\"160.81\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.72\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.60\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.60\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.05\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"125\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.17\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"126\" width=\"198.84\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"71.50\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"105.82\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"105.82\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.95\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"139.95\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.08\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"174.08\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"88.66\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.79\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.79\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.92\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.92\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"127\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"31.56\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.67\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.23\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"109.79\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.79\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.23\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"128\" width=\"167.91\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.62\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.62\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.15\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.15\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.45\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"114.58\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.58\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.58\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"129\" width=\"188.07\">\n      <note default-x=\"15.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.96\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.52\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.52\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"83.48\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.44\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"123.39\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"123.39\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.52\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.52\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.44\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.44\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"143.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"130\" width=\"156.51\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.16\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"63.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.62\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.62\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.75\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"131.75\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"46.32\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"80.45\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"80.45\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"114.58\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"114.58\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"131\" width=\"173.67\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"31.56\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"70.67\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"90.23\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"109.79\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"109.79\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"148.91\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.12\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.23\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"90.23\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"132\" width=\"183.04\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.28\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"158.28\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"81.16\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"81.16\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"81.16\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.98\" default-y=\"-160.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.98\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.52\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.52\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"133\" width=\"192.52\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.91\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.91\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.91\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.07\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.07\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"63.23\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.13\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"84.13\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.13\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"105.04\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"125.95\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"125.95\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"167.76\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.23\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.04\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"105.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.04\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.85\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.85\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"134\" width=\"162.20\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.92\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.76\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.76\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.60\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.60\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"137.43\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.51\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.51\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"135\" width=\"179.36\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.37\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.11\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.85\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.85\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.60\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.22\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.22\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"136\" width=\"162.20\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.92\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.76\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.76\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"101.60\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"101.60\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.43\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.84\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"83.68\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.51\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"119.51\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"137\" width=\"179.36\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.37\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.11\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.85\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"113.85\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"154.60\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.74\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.48\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.22\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.22\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"138\" width=\"203.14\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.05\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.94\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"142.94\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.38\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.78\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.22\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"125.22\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.66\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.66\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"139\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.17\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"140\" width=\"160.81\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.72\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.60\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.60\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"136.05\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"141\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.17\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-155.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"142\" width=\"160.81\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"29.72\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"65.16\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.60\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.60\" default-y=\"25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"136.05\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"136.05\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.44\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"82.88\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-135.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.33\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"143\" width=\"177.97\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"32.17\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.52\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"112.86\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.21\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.35\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.69\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.04\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"144\" width=\"250.31\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"78.02\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.71\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"125.40\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"125.40\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.77\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"172.77\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.02\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.02\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.71\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"101.71\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.71\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"149.08\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"196.46\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.46\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.46\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"145\" width=\"229.94\">\n      <note default-x=\"16.80\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.94\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.64\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"123.78\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"149.92\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"149.92\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"202.20\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"71.50\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.78\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.78\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"176.06\" default-y=\"-140.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"176.06\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"146\" width=\"196.58\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"34.83\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.66\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"80.49\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"80.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.15\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"126.15\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.81\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.81\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"57.66\" default-y=\"-120.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"57.66\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.32\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.32\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"148.98\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"148.98\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"147\" width=\"213.74\">\n      <note default-x=\"12.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.02\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"87.05\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"112.07\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"137.09\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"137.09\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.12\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.12\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.03\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.07\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.07\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.10\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"162.10\" default-y=\"-100.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"162.10\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"148\" width=\"168.10\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"20.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-145.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.63\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-165.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.25\" default-y=\"-130.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/winners.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"225.88\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>213.74</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>2</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"74.93\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.06\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.41\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.76\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.11\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"74.93\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.50\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"140.06\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.41\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"180.76\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"201.11\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"162.94\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.35\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.91\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"85.27\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.83\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-50.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.35\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.91\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"85.27\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.83\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"197.27\">\n      <note default-x=\"12.00\" default-y=\"-55.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"34.93\" default-y=\"-50.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"57.86\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"80.79\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"103.72\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.65\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.58\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.50\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.72\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.65\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"149.58\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.50\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"128.62\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.51\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"128.62\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.26\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.75\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.51\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.26\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"215.34\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.03\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"94.03\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.05\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"120.05\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.62\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"148.62\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"174.65\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.65\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.46\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.46\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.46\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.05\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.65\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.65\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.65\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"293.74\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.73\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.95\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.95\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.72\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"150.72\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.94\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"178.94\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"207.50\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"207.50\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"235.71\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"235.71\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"263.93\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"263.93\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.16\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.16\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.16\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.94\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"235.71\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"235.71\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"235.71\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"230.13\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.77\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.25\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"78.25\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"78.25\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.73\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"103.73\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"103.73\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.21\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"129.21\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"129.21\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.37\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"159.53\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"189.89\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"203.05\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"203.05\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.77\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.73\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"159.53\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"159.53\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"159.53\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"139.12\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.38\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.38\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.14\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.14\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"43.38\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"43.38\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"43.38\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"74.76\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.14\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.14\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.14\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"209.02\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.03\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.89\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"93.89\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"119.92\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.23\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"144.23\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.53\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.33\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.92\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"168.53\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.53\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.53\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"186.65\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"33.62\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.62\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.86\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"76.86\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"107.22\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"128.84\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.46\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.24\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.22\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.46\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"218.98\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.53\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"149.09\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"194.22\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"90.43\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"90.43\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.53\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.53\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"171.65\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"142.32\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.54\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.54\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.36\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.54\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"108.54\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.54\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"229.05\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.74\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"42.74\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"99.03\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.77\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.77\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"155.33\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.07\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.07\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"70.47\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"70.47\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.47\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.77\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"183.07\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.07\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.07\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"252.30\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.17\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"44.17\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.51\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"102.51\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.68\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.68\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.85\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"160.85\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.01\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"191.17\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"191.17\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"221.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"221.53\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"221.53\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.34\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.68\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"131.68\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"191.17\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"191.17\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"216.02\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.07\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"38.07\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.07\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"38.07\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.43\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.43\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.43\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.50\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"94.50\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"120.57\" default-y=\"30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.28\" default-y=\"15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"188.35\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.43\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.43\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.57\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.57\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"310.04\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.73\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.07\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"96.07\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.75\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"156.75\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.09\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"187.09\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.42\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"217.42\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"247.76\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"247.76\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"278.10\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"278.10\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.41\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.41\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.09\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"187.09\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"247.76\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"247.76\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"247.76\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"206.90\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"36.16\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"36.16\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"60.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.49\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"84.49\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"108.65\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"108.65\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"132.82\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"132.82\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"181.14\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"181.14\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"60.33\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"60.33\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.65\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.65\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"221.88\">\n      <note default-x=\"15.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.77\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.77\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.11\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"97.11\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"123.89\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.66\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.44\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.44\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.44\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.55\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.55\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.55\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"123.89\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.44\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.44\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"164.43\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"49.71\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.71\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.41\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.12\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"21\" width=\"155.42\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.45\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"47.45\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.36\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.36\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"47.45\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"47.45\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"47.45\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.91\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.36\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.36\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.36\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"22\" width=\"268.74\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>126.24</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.73\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.76\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"91.76\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"145.78\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"145.78\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"171.81\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"171.81\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"200.38\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"200.38\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.40\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"226.40\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.22\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"171.81\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"226.40\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"226.40\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"226.40\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"23\" width=\"235.17\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.91\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.91\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.38\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"97.38\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"124.28\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"124.28\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.85\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"152.85\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"179.75\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"179.75\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"206.66\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"206.66\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"68.82\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.82\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.82\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"124.28\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"179.75\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"179.75\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"179.75\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"24\" width=\"222.29\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.61\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.61\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"74.61\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.69\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"98.69\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"98.69\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.77\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"122.77\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.77\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.93\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.09\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"183.45\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"196.61\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"196.61\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.53\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.69\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.09\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"25\" width=\"131.28\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.42\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.42\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.26\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"41.42\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"41.42\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.42\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.84\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.26\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"26\" width=\"201.18\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.03\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"92.19\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.22\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.22\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.82\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"140.82\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.42\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.42\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.63\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.63\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.63\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.22\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"163.42\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"163.42\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"163.42\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"27\" width=\"237.41\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.23\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"123.02\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"123.02\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"153.39\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"153.39\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"176.28\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"176.28\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"199.18\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"199.18\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"100.13\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"100.13\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.13\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.39\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"199.18\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"199.18\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"28\" width=\"181.88\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.79\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"86.79\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"110.16\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"133.54\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"156.91\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.40\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.40\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.79\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"86.79\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"133.54\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"133.54\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"29\" width=\"147.56\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"112.47\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.49\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.98\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.47\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"30\" width=\"234.28\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.64\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"43.64\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.93\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"100.93\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.57\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"129.57\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"158.21\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"158.21\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.85\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.85\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"72.28\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"129.57\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"186.85\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"186.85\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.85\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"31\" width=\"257.54\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.04\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"45.04\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"105.13\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"105.13\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.17\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"135.17\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"165.21\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.21\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.37\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.53\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.53\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.89\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.89\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"225.89\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"75.08\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"135.17\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"135.17\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.53\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"195.53\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"32\" width=\"252.32\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.49\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"79.49\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.49\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"79.49\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.85\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.85\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"109.85\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.00\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"135.00\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"135.00\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.16\" default-y=\"30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"200.41\" default-y=\"15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"225.56\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.85\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.85\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.16\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.16\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"33\" width=\"240.17\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.74\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"42.74\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"99.05\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"99.05\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"126.79\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"126.79\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.35\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"155.35\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"183.09\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.09\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"210.83\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"210.83\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"70.48\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.79\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.09\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"183.09\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"183.09\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"34\" width=\"187.77\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.57\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"33.57\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"55.15\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.15\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"76.72\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.72\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.29\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"98.29\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.86\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"119.86\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"163.01\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"163.01\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.15\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.15\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.15\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.29\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.29\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.44\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"141.44\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"141.44\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"35\" width=\"202.74\">\n      <note default-x=\"15.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.03\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.03\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"92.53\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"92.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"118.56\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"118.56\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.50\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"141.50\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.97\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.97\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.97\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.56\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"118.56\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"164.44\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"36\" width=\"175.66\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.36\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"84.36\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.36\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.36\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"120.54\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.90\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.18\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"48.18\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.36\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.36\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"37\" width=\"242.05\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"106.79\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"128.89\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.89\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.09\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"195.19\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"217.29\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.79\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.79\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.79\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.99\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.19\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"195.19\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.19\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"38\" width=\"208.59\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.71\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.82\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.62\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.62\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"39\" width=\"230.08\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.96\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.92\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"89.88\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.84\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"146.20\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"172.16\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"202.52\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.92\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.92\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.92\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"115.84\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"115.84\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.16\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.16\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.16\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"40\" width=\"208.59\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"88.54\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"134.71\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.82\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"65.45\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.62\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.62\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"160.74\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"41\" width=\"169.36\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"30.94\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"68.83\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"87.77\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"106.71\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"144.60\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.88\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"49.88\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"49.88\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"87.77\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"87.77\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.65\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"125.65\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"125.65\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"42\" width=\"236.55\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"76.83\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"121.81\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"144.31\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"166.80\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"189.30\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"211.79\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.32\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"99.32\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"99.32\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.31\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"144.31\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"189.30\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"189.30\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"43\" width=\"190.26\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.52\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"83.41\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"103.93\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.45\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"165.50\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.04\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.04\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"53.04\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"103.93\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"103.93\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.97\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"144.97\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"144.97\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"44\" width=\"194.22\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"34.49\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.48\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"101.98\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"124.47\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"146.96\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.99\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"56.99\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"56.99\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"101.98\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"101.98\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.96\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.96\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.96\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"45\" width=\"218.82\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.07\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"192.84\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.69\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.69\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"46\" width=\"218.82\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.38\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.31\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"144.07\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"144.07\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"168.45\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"192.84\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"192.84\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.94\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"119.69\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"119.69\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.45\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"47\" width=\"243.78\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.70\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"84.70\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.08\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"107.08\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"129.47\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"174.25\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"196.63\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"219.02\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"107.08\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"107.08\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.08\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.86\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"196.63\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"196.63\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"196.63\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"48\" width=\"188.25\">\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.64\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.28\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.92\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"120.21\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.85\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"55.28\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.28\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.57\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.57\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.57\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"49\" width=\"230.85\">\n      <note default-x=\"15.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"45.36\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.50\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.86\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"159.64\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"202.48\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"45.36\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"72.14\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"102.50\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"132.86\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"159.64\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"202.48\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"50\" width=\"207.53\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.85\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"97.21\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"127.57\" default-y=\"25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-70.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.85\" default-y=\"-60.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"97.21\" default-y=\"-55.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"127.57\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"51\" width=\"188.25\">\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.64\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"55.28\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"76.92\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"120.21\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"141.85\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.49\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-60.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"52\" width=\"243.31\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"67.50\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.66\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.82\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.66\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"84.66\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"133.28\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.28\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"133.28\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.89\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.89\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"169.89\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"188.19\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"218.55\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.96\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.58\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.58\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"53\" width=\"191.82\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.14\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"83.93\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"83.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"125.49\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"146.27\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"167.05\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.14\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.14\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.14\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.71\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"104.71\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.27\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"146.27\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"146.27\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"54\" width=\"200.68\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.37\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"85.37\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.39\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.92\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.88\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.88\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"55\" width=\"222.18\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"36.64\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"61.28\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"85.93\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"110.57\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"140.93\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"165.57\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"195.93\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.28\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"61.28\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"61.28\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"110.57\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"110.57\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.57\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"165.57\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"165.57\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"56\" width=\"200.68\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"85.37\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"85.37\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.39\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"175.92\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.87\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.88\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.88\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"154.41\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"57\" width=\"227.74\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"75.57\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"118.04\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"139.27\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"160.51\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"202.98\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.80\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"96.80\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"96.80\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.27\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"139.27\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.75\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"181.75\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"181.75\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"58\" width=\"202.57\">\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"35.62\" default-y=\"25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"82.86\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"106.49\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.11\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.73\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.35\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"59\" width=\"198.61\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"33.91\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.19\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"108.10\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"130.02\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"173.85\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.83\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"55.83\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"55.83\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"108.10\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.10\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.93\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"151.93\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.93\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"60\" width=\"202.57\">\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"35.62\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"82.86\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"106.49\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"130.11\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"177.35\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.24\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"106.49\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"153.73\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"61\" width=\"227.17\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"37.77\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"66.34\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"96.70\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"96.70\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"148.25\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"174.02\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"199.80\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.34\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"66.34\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"66.34\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.47\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"122.47\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.02\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"174.02\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.02\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"62\" width=\"250.26\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"76.78\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"105.34\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"135.71\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"135.71\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.60\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"180.60\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"203.05\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"203.05\" default-y=\"10.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"225.50\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"225.50\" default-y=\"5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.34\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"105.34\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"105.34\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.16\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"158.16\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"203.05\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"203.05\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"203.05\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"63\" width=\"196.53\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"63.93\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"63.93\" default-y=\"0.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"85.50\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"128.63\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"150.20\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"171.77\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.93\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.93\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.93\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"107.07\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"150.20\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.20\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.20\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"64\" width=\"183.33\">\n      <note default-x=\"12.00\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.94\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"53.88\" default-y=\"0.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"74.82\" default-y=\"-10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"116.69\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"137.63\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"158.57\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"53.88\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"53.88\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.75\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"65\" width=\"225.93\">\n      <note default-x=\"15.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"45.36\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.43\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.79\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"157.50\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"198.63\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"45.36\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"71.07\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"101.43\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"131.79\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"157.50\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"198.63\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      </measure>\n    <measure number=\"66\" width=\"202.61\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.68\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"96.04\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"126.40\" default-y=\"25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"42.36\" default-y=\"-70.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"65.68\" default-y=\"-60.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"96.04\" default-y=\"-55.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"126.40\" default-y=\"-45.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"67\" width=\"239.97\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"77.32\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"100.30\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"123.28\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"169.24\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"192.23\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"215.21\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-60.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"68\" width=\"189.64\">\n      <note default-x=\"12.00\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"25.16\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"55.49\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"42.32\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"93.25\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.46\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.46\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.46\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.07\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"62.93\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"62.93\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.86\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"113.86\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"69\" width=\"146.15\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.14\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.14\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.41\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"45.14\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"45.14\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"45.14\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.28\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"111.41\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"70\" width=\"232.87\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"43.42\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"43.42\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"100.40\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"100.40\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"128.82\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"128.82\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.38\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"157.38\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.80\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"71.84\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"71.84\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"71.84\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"128.82\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"185.80\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"71\" width=\"250.04\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"44.18\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"44.18\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.54\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"102.54\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"131.72\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"131.72\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.90\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"160.90\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.08\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"190.08\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"219.26\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"219.26\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"73.36\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"73.36\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.36\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"131.72\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"190.08\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"190.08\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"190.08\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"72\" width=\"262.27\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"92.19\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.85\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"115.85\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"115.85\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.51\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"139.51\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"139.51\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.17\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"163.17\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"163.17\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"180.33\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"193.49\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"193.49\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"223.85\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"237.01\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"237.01\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.19\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"139.51\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"193.49\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"193.49\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"193.49\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"73\" width=\"128.93\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.67\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"74\" width=\"198.83\">\n      <note default-x=\"15.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.03\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"91.68\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"91.68\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.71\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"117.71\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"139.80\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"139.80\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"161.88\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.88\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"63.12\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"63.12\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"63.12\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.71\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"161.88\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"161.88\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"161.88\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"75\" width=\"176.45\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"32.07\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"32.07\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"72.22\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"72.22\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"102.59\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"102.59\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"122.66\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"122.66\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.73\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.73\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.15\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.59\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.73\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"142.73\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"76\" width=\"163.25\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.29\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"77.29\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"97.69\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"118.09\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"138.49\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-75.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"44.64\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"44.64\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.29\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"77.29\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"118.09\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"118.09\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"77\" width=\"128.93\">\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"40.83\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"69.67\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"98.50\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"78\" width=\"298.12\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.73\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"96.10\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"96.10\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.83\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"156.83\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.20\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"187.20\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.57\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"217.57\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"247.93\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"247.93\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.47\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"187.20\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"247.93\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"247.93\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"247.93\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"79\" width=\"270.64\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"46.76\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"46.76\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"110.27\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"110.27\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"142.02\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"142.02\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"173.78\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"173.78\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"192.37\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.53\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"205.53\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"237.29\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"237.29\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"237.29\" default-y=\"30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"78.51\" default-y=\"-105.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"78.51\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"78.51\" default-y=\"-80.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"142.02\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"142.02\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.53\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"205.53\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"80\" width=\"225.35\">\n      <note default-x=\"12.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"12.00\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.91\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"37.91\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.91\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"37.91\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.27\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.27\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"68.27\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.19\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.19\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"94.19\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.01\" default-y=\"5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.01\" default-y=\"15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"146.01\" default-y=\"30.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"171.92\" default-y=\"15.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"197.84\" default-y=\"20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"68.27\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"68.27\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.10\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"120.10\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"81\" width=\"264.55\">\n      <note default-x=\"15.00\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"45.99\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"45.99\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"107.98\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"107.98\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"169.97\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"169.97\" default-y=\"25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"200.96\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"200.96\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"231.96\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"231.96\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.99\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"76.99\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"76.99\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"138.97\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"200.96\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"200.96\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"200.96\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"82\" width=\"391.33\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"54.33\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.26\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"96.26\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"138.18\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"180.11\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"180.11\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"222.03\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"222.03\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"263.96\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"263.96\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"347.81\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"347.81\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.18\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"222.03\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"222.03\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"305.88\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"305.88\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"305.88\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"83\" width=\"363.97\">\n      <note default-x=\"15.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"60.71\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"60.71\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"152.12\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"152.12\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.83\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"197.83\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.53\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"243.53\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.53\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"289.24\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"289.24\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"289.24\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.41\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.41\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.41\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"197.83\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"197.83\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"289.24\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"289.24\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"84\" width=\"303.36\">\n      <note default-x=\"12.00\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>8</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"84.44\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"84.44\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.88\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "joplin/winners_2.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE score-partwise PUBLIC \"-//Recordare//DTD MusicXML 2.0 Partwise//EN\" \"http://www.musicxml.org/dtds/partwise.dtd\">\n<score-partwise>\n  <identification>\n    <encoding>\n      <software>MuseScore 1.3</software>\n      <encoding-date>2015-05-13</encoding-date>\n      </encoding>\n    </identification>\n  <defaults>\n    <scaling>\n      <millimeters>7.05556</millimeters>\n      <tenths>40</tenths>\n      </scaling>\n    <page-layout>\n      <page-height>1683.78</page-height>\n      <page-width>1190.55</page-width>\n      <page-margins type=\"even\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      <page-margins type=\"odd\">\n        <left-margin>56.6929</left-margin>\n        <right-margin>56.6929</right-margin>\n        <top-margin>56.6929</top-margin>\n        <bottom-margin>113.386</bottom-margin>\n        </page-margins>\n      </page-layout>\n    </defaults>\n  <part-list>\n    <score-part id=\"P1\">\n      <part-name></part-name>\n      <score-instrument id=\"P1-I3\">\n        <instrument-name></instrument-name>\n        </score-instrument>\n      <midi-instrument id=\"P1-I3\">\n        <midi-channel>1</midi-channel>\n        <midi-program>1</midi-program>\n        <volume>78.7402</volume>\n        <pan>0</pan>\n        </midi-instrument>\n      </score-part>\n    </part-list>\n  <part id=\"P1\">\n    <measure number=\"1\" width=\"379.00\">\n      <print>\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <attributes>\n        <divisions>4</divisions>\n        <key>\n          <fifths>0</fifths>\n          <mode>major</mode>\n          </key>\n        <time>\n          <beats>4</beats>\n          <beat-type>4</beat-type>\n          </time>\n        <staves>2</staves>\n        <clef number=\"1\">\n          <sign>G</sign>\n          <line>2</line>\n          </clef>\n        <clef number=\"2\">\n          <sign>F</sign>\n          <line>4</line>\n          </clef>\n        </attributes>\n      <note default-x=\"74.93\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.28\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.63\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.48\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.32\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.16\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"225.01\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"258.36\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"291.71\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"312.55\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"333.39\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"354.24\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"74.93\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"108.28\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.63\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"162.48\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"183.32\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.16\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"225.01\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"258.36\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"291.71\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"312.55\" default-y=\"-110.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"333.39\" default-y=\"-95.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"354.24\" default-y=\"-85.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      </measure>\n    <measure number=\"2\" width=\"335.04\">\n      <note default-x=\"16.76\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"3.60\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"16.76\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.01\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"37.01\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"37.01\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.41\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"69.41\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.41\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.99\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"106.83\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"119.99\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"137.15\" default-y=\"-35.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.31\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"150.31\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.71\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.71\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"182.71\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>4</duration>\n        <voice>1</voice>\n        <type>quarter</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"279.91\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"310.28\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"16.76\" default-y=\"-75.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"89.66\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"89.66\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"150.31\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"150.31\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"182.71\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"182.71\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.11\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"215.11\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"247.51\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"247.51\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"279.91\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"279.91\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"3\" width=\"344.63\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"31.95\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"71.85\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"100.41\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"120.36\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"160.26\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"180.21\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"200.16\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"220.11\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"240.06\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"279.97\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"299.92\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"319.87\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.90\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"51.90\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.90\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"100.41\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"100.41\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.31\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"140.31\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"180.21\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"180.21\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.11\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"220.11\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"220.11\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"260.02\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"260.02\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"299.92\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"299.92\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"299.92\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"4\" width=\"386.70\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"74.84\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"95.35\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"115.86\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"156.87\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"197.88\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"218.39\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"238.90\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"259.41\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"279.91\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"300.42\" default-y=\"20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"320.93\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"341.44\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"361.94\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.35\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.35\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.35\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"136.36\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.38\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"177.38\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"218.39\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"218.39\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"259.41\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"259.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"300.42\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"300.42\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"341.44\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"341.44\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"5\" width=\"321.45\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"30.29\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"66.88\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"95.45\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.74\" default-y=\"0.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"150.33\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"168.62\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.92\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"205.21\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"223.51\" default-y=\"10.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"260.10\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"278.39\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"296.69\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.59\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"48.59\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"48.59\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.45\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"95.45\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.03\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"132.03\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"168.62\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"168.62\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.21\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"205.21\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"205.21\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"241.80\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"241.80\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"278.39\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"278.39\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"278.39\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"6\" width=\"350.51\">\n      <note default-x=\"12.00\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"33.52\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"59.88\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"81.40\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"102.92\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"124.43\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"167.47\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"188.99\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"223.42\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"223.42\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"249.44\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"249.44\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"270.96\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"270.96\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"301.32\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"314.49\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"46.72\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"59.88\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"59.88\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.92\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"102.92\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"132.79\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"145.95\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"145.95\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.99\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"188.99\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"188.99\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"223.42\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"249.44\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"270.96\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"314.49\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"314.49\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"7\" width=\"375.39\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.46\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"73.46\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"111.70\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"111.70\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"140.27\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.39\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"159.39\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"197.64\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"197.64\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"235.89\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"255.01\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"274.13\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"293.26\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"312.38\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"331.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"350.63\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.58\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"92.58\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"92.58\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"140.27\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"140.27\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.51\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"178.51\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"216.76\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"216.76\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"255.01\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"255.01\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"255.01\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"293.26\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"293.26\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"331.50\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"331.50\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"331.50\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"8\" width=\"350.22\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"32.35\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"52.70\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"73.05\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"93.40\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"113.75\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"154.45\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"195.15\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"215.50\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"235.85\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"256.20\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"256.20\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"276.55\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"276.55\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"305.11\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"305.11\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"325.46\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"325.46\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.70\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"52.70\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"52.70\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"93.40\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"93.40\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.10\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"134.10\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.80\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.80\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"215.50\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"215.50\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"256.20\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"256.20\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"305.11\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"305.11\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"9\" width=\"333.06\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"31.12\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"31.12\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"69.37\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.37\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"97.93\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.06\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.06\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"155.30\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"155.30\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"193.55\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"212.68\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"231.80\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"250.92\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"270.05\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"289.17\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"308.29\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"50.25\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"50.25\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"97.93\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"97.93\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"136.18\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"136.18\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"174.43\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"174.43\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"212.68\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"212.68\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"250.92\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"250.92\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"289.17\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"289.17\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"10\" width=\"413.26\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"67.53\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.67\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.67\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"88.67\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.96\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.96\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.96\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.13\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.13\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"178.13\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"211.95\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"211.95\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"254.23\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"254.23\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"275.37\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"296.51\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"317.65\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"338.80\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"359.94\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"388.50\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"67.53\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"67.53\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"109.82\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"109.82\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-180.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"156.98\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"233.09\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"233.09\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"275.37\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"275.37\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"317.65\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"317.65\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"359.94\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"359.94\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"11\" width=\"337.36\">\n      <note default-x=\"15.00\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.45\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"46.61\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.45\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.22\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.38\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.22\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.98\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"130.98\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"130.98\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.50\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.50\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"226.90\" default-y=\"-40.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"226.90\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"263.80\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"263.80\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"282.24\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"282.24\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"312.60\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"312.60\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"15.00\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"15.00\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.89\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.89\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-180.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"112.54\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"178.94\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"178.94\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.46\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"245.35\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"12\" width=\"308.04\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"41.14\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"41.14\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"59.35\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.35\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"59.35\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"124.91\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"124.91\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"124.91\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.12\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.12\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"143.12\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"172.26\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"172.26\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.47\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"190.47\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"190.47\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"226.89\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"226.89\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"257.25\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"257.25\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"283.28\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"283.28\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.14\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"41.14\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"41.14\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"77.56\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"77.56\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.70\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"106.70\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"106.70\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.12\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"143.12\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.26\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"172.26\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"172.26\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"208.68\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"208.68\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"226.89\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"226.89\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"257.25\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"257.25\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"283.28\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"283.28\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"13\" width=\"267.18\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>0.00</right-margin>\n            </system-margins>\n          <system-distance>162.18</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.65\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"73.65\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"73.65\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"90.81\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.81\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"90.81\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.27\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.27\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"134.27\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"151.43\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.43\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"151.43\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.75\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"170.75\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"170.75\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.91\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.91\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.91\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"242.41\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"242.41\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"242.41\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.65\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"73.65\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"73.65\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"102.88\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.20\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"122.20\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"122.20\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"151.43\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"151.43\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.75\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"170.75\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"170.75\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"199.98\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"199.98\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"230.34\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"230.34\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"14\" width=\"264.29\">\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"35.03\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"65.36\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"52.20\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"65.36\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.18\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"104.02\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.18\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"157.38\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"187.70\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"174.54\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"187.70\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"239.53\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"226.37\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"239.53\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"35.03\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"35.03\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"35.03\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"79.75\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"79.75\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.79\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"102.79\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"102.79\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"134.34\" default-y=\"-135.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"134.34\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.38\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"157.38\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"157.38\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"202.10\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"202.10\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"225.13\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"225.13\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"225.13\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"15\" width=\"259.17\">\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.95\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"156.10\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"156.10\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.10\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.88\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.88\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"204.04\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"204.04\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"234.40\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"234.40\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <alter>1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.57\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.57\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.72\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"169.72\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"204.04\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"204.04\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"16\" width=\"268.03\">\n      <note default-x=\"12.00\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"12.00\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"33.79\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"50.95\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.95\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"50.95\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"99.98\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.15\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"117.15\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">forward hook</beam>\n        </note>\n      <note default-x=\"138.94\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.10\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"156.10\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"156.10\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"186.88\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"186.88\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"217.24\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"217.24\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"243.27\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"243.27\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"33.79\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"64.57\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"64.57\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.36\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"117.15\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-100.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"138.94\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"169.72\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"169.72\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.88\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"186.88\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"217.24\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"217.24\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"243.27\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"243.27\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>5</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"17\" width=\"371.77\">\n      <print new-page=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>-0.00</right-margin>\n            </system-margins>\n          <top-system-distance>70.00</top-system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"54.33\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"54.33\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"86.35\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"106.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.36\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"106.36\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.39\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.39\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"178.39\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"218.40\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"238.41\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"258.42\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"278.43\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"278.43\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"298.44\" default-y=\"-5.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"298.44\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"327.00\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"327.00\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"347.01\" default-y=\"-20.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"347.01\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"54.33\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"54.33\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"86.35\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"126.36\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"126.36\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.38\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"158.38\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.38\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"198.39\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"198.39\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"238.41\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"238.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"278.43\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"278.43\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"327.00\" default-y=\"-155.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"327.00\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"18\" width=\"363.76\">\n      <note default-x=\"12.00\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.32\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"33.32\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"75.95\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"75.95\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"104.51\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.83\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"125.83\" default-y=\"0.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"168.46\" default-y=\"-25.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>A</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"168.46\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"211.10\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"232.41\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"253.73\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"275.05\" default-y=\"10.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"296.36\" default-y=\"5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"317.68\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"339.00\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"12.00\" default-y=\"-150.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"12.00\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"54.63\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"54.63\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"104.51\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"104.51\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"147.15\" default-y=\"-115.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>F</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"147.15\" default-y=\"-80.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"189.78\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"189.78\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"232.41\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"232.41\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"275.05\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"275.05\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"317.68\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"317.68\" default-y=\"-95.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"19\" width=\"323.14\">\n      <note default-x=\"16.80\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.36\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.36\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"34.36\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.47\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.47\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"69.47\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"95.50\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>natural</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.05\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.05\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"113.05\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"141.14\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"141.14\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"204.34\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"204.34\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"239.45\" default-y=\"-30.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">begin</beam>\n        </note>\n      <note default-x=\"239.45\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"269.82\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <beam number=\"2\">continue</beam>\n        </note>\n      <note default-x=\"269.82\" default-y=\"10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"298.38\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">end</beam>\n        </note>\n      <note default-x=\"298.38\" default-y=\"15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <alter>-1</alter>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>down</stem>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"16.80\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"16.80\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"51.91\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"51.91\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.50\" default-y=\"-180.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"95.50\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"158.70\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"158.70\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"186.79\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"186.79\" default-y=\"-110.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"221.90\" default-y=\"-120.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"221.90\" default-y=\"-85.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"269.82\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"269.82\" default-y=\"-90.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <alter>1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <accidental>sharp</accidental>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      </measure>\n    <measure number=\"20\" width=\"250.95\">\n      <print new-system=\"yes\">\n        <system-layout>\n          <system-margins>\n            <left-margin>18.50</left-margin>\n            <right-margin>807.71</right-margin>\n            </system-margins>\n          <system-distance>92.50</system-distance>\n          </system-layout>\n        <staff-layout number=\"2\">\n          <staff-distance>65.00</staff-distance>\n          </staff-layout>\n        </print>\n      <note default-x=\"65.73\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <accidental>flat</accidental>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.90\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">continue</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"96.06\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"82.90\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.22\" default-y=\"-30.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>G</step>\n          <alter>-1</alter>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <beam number=\"2\">backward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"126.38\" default-y=\"-25.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"113.22\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"143.54\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.70\" default-y=\"-35.00\" dynamics=\"88.89\">\n        <pitch>\n          <step>F</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"160.70\" default-y=\"-20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>B</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"160.70\" default-y=\"-10.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"177.87\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"177.87\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>4</duration>\n        <tie type=\"start\"/>\n        <voice>1</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"start\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.03\" default-y=\"-40.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>E</step>\n          <octave>4</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">begin</beam>\n        <beam number=\"2\">forward hook</beam>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"195.03\" default-y=\"-15.00\" dynamics=\"88.89\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>1</duration>\n        <tie type=\"stop\"/>\n        <voice>1</voice>\n        <type>16th</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <notations>\n          <tied type=\"stop\"/>\n          </notations>\n        </note>\n      <note default-x=\"212.19\" default-y=\"-15.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"212.19\" default-y=\"-5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>E</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"212.19\" default-y=\"5.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>5</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note default-x=\"212.19\" default-y=\"20.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>6</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>1</staff>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>1</voice>\n        <type>eighth</type>\n        <staff>1</staff>\n        </note>\n      <backup>\n        <duration>16</duration>\n        </backup>\n      <note default-x=\"65.73\" default-y=\"-140.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>A</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"65.73\" default-y=\"-105.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>A</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"82.90\" default-y=\"-160.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>D</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note default-x=\"82.90\" default-y=\"-125.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>D</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.54\" default-y=\"-180.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>1</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"143.54\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>4</duration>\n        <voice>5</voice>\n        <type>quarter</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"177.87\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">begin</beam>\n        </note>\n      <note default-x=\"177.87\" default-y=\"-130.00\" dynamics=\"141.11\">\n        <chord/>\n        <pitch>\n          <step>C</step>\n          <octave>3</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        </note>\n      <note default-x=\"195.03\" default-y=\"-145.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>G</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">continue</beam>\n        </note>\n      <note default-x=\"212.19\" default-y=\"-165.00\" dynamics=\"141.11\">\n        <pitch>\n          <step>C</step>\n          <octave>2</octave>\n          </pitch>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <stem>up</stem>\n        <staff>2</staff>\n        <beam number=\"1\">end</beam>\n        </note>\n      <note>\n        <rest/>\n        <duration>2</duration>\n        <voice>5</voice>\n        <type>eighth</type>\n        <staff>2</staff>\n        </note>\n      </measure>\n    </part>\n  </score-partwise>\n"
  },
  {
    "path": "midi/DataTypeConverters.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nfrom struct import pack, unpack\n\n\"\"\"\nThis module contains functions for reading and writing the special data types\nthat a midi file contains.\n\"\"\"\n\n\"\"\"\nnibbles are four bits. A byte consists of two nibles.\nhiBits==0xF0, loBits==0x0F Especially used for setting\nchannel and event in 1. byte of musical midi events\n\"\"\"\n\n\n\ndef getNibbles(byte):\n    \"\"\"\n    Returns hi and lo bits in a byte as a tuple\n    >>> getNibbles(142)\n    (8, 14)\n    \n    Asserts byte value in byte range\n    >>> getNibbles(256)\n    Traceback (most recent call last):\n        ...\n    ValueError: Byte value out of range 0-255: 256\n    \"\"\"\n    if not 0 <= byte <= 255:\n        raise ValueError('Byte value out of range 0-255: %s' % byte)\n    return (byte >> 4 & 0xF, byte & 0xF)\n\n\ndef setNibbles(hiNibble, loNibble):\n    \"\"\"\n    Returns byte with value set according to hi and lo bits\n    Asserts hiNibble and loNibble in range(16)\n    >>> setNibbles(8, 14)\n    142\n    \n    >>> setNibbles(8, 16)\n    Traceback (most recent call last):\n        ...\n    ValueError: Nible value out of range 0-15: (8, 16)\n    \"\"\"\n    if not (0 <= hiNibble <= 15) or not (0 <= loNibble <= 15):\n        raise ValueError('Nible value out of range 0-15: (%s, %s)' % (hiNibble, loNibble))\n    return (hiNibble << 4) + loNibble\n\n\n\ndef readBew(value):\n    \"\"\"\n    Reads string as big endian word, (asserts len(value) in [1,2,4])\n    >>> readBew('a')\n    1642193635L\n    >>> readBew('a')\n    25057\n    \"\"\"\n    return unpack('>%s' % {1:'B', 2:'H', 4:'L'}[len(value)], value)[0]\n\n\ndef writeBew(value, length):\n    \"\"\"\n    Write int as big endian formatted string, (asserts length in [1,2,4])\n    Difficult to print the result in doctest, so I do a simple roundabout test.\n    >>> readBew(writeBew(25057, 2))\n    25057\n    >>> readBew(writeBew(1642193635L, 4))\n    1642193635L\n    \"\"\"\n    return pack('>%s' % {1:'B', 2:'H', 4:'L'}[length], value)\n\n\n\n\"\"\"\nVariable Length Data (varlen) is a data format sprayed liberally throughout\na midi file. It can be anywhere from 1 to 4 bytes long.\nIf the 8'th bit is set in a byte another byte follows. The value is stored\nin the lowest 7 bits of each byte. So max value is 4x7 bits = 28 bits.\n\"\"\"\n\n\ndef readVar(value):\n    \"\"\"\n    Converts varlength format to integer. Just pass it 0 or more chars that\n    might be a varlen and it will only use the relevant chars.\n    use varLen(readVar(value)) to see how many bytes the integer value takes.\n    asserts len(value) >= 0\n    >>> readVar('@')\n    64\n    >>> readVar('a')\n    205042145\n    \"\"\"\n    sum = 0\n    for byte in unpack('%sB' % len(value), value):\n        sum = (sum << 7) + (byte & 0x7F)\n        if not 0x80 & byte: break # stop after last byte\n    return sum\n\n\n\ndef varLen(value):\n    \"\"\"\n    Returns the the number of bytes an integer will be when\n    converted to varlength\n    \"\"\"\n    if value <= 127:\n        return 1\n    elif value <= 16383:\n        return 2\n    elif value <= 2097151:\n        return 3\n    else:\n        return 4\n\n\ndef writeVar(value):\n    \"Converts an integer to varlength format\"\n    sevens = to_n_bits(value, varLen(value))\n    for i in range(len(sevens)-1):\n        sevens[i] = sevens[i] | 0x80\n    return fromBytes(sevens)\n\n\ndef to_n_bits(value, length=1, nbits=7):\n    \"returns the integer value as a sequence of nbits bytes\"\n    bytes = [(value >> (i*nbits)) & 0x7F for i in range(length)]\n    bytes.reverse()\n    return bytes\n\n\ndef toBytes(value):\n    \"Turns a string into a list of byte values\"\n    return unpack('%sB' % len(value), value)\n\n\ndef fromBytes(value):\n    \"Turns a list of bytes into a string\"\n    if not value:\n        return ''\n    return pack('%sB' % len(value), *value)\n\n\n\nif __name__ == '__main__':\n\n#    print to7bits(0, 3)\n#    print to7bits(127, 3)\n#    print to7bits(255, 3)\n#    print to7bits(65536, 3)\n\n    # simple test cases\n    \n#    print 'getHiLoHex', getNibbles(16)\n#    print 'setHiLoHex', setNibbles(1,0)\n#    \n#    print 'readBew', readBew('a')\n#    print 'writeBew', writeBew(1642193635, 4)\n#\n#    print 'varLen', varLen(1)\n#\n    print 'readVar', readVar('@')\n    print 'writeVar', writeVar(8192)\n    \n    print 'readVar', readVar('a')\n    print 'writeVar', writeVar(205058401)\n#    \n#    vartest = '\\x82\\xF7\\x80\\x00'\n#    print 'toBytes', toBytes(vartest)\n#    print 'fromBytes', fromBytes([48, 49, 50,])\n    \n    \n#    instr = '\\xFF\\xFF\\xFF\\x00'\n#    print 'readVar', readVar(instr)\n#    inst2 = 268435455\n#    print inst2\n#    print writeVar(inst2)\n#    print writeVar(readVar(instr))\n\n    s1 = 0x00000000\n    print '%08X -' % s1, '00',  writeVar(s1)\n    s2 = 0x00000040\n    print '%08X -' % s2, '40',  writeVar(s2)\n    s3 = 0x0000007F\n    print '%08X -' % s3, '7F',  writeVar(s3)\n    s4 = 0x00000080\n    print '%08X -' % s4, '81 00',  writeVar(s4)\n    s5 = 0x00002000\n    print '%08X -' % s5, 'C0 00',  writeVar(s5)\n    s6 = 0x00003FFF\n    print '%08X -' % s6, 'FF 7F',  writeVar(s6)\n    s7 = 0x00004000\n    print '%08X -' % s7, '81 80 00',  writeVar(s7)\n    s8 = 0x00100000\n    print '%08X -' % s8, 'C0 80 00',  writeVar(s8)\n    s9 = 0x001FFFFF\n    print '%08X -' % s9, 'FF FF 7F',  writeVar(s9)\n    s10 = 0x00200000\n    print '%08X -' % s10, '81 80 80 00', writeVar(s10)\n    s11 = 0x08000000\n    print '%08X -' % s11, 'C0 80 80 00', writeVar(s11)\n    s12 = 0x0FFFFFFF\n    print '%08X -' % s12, 'FF FF FF 7F', writeVar(s12)\n              \n              \n              \n             \n             \n             \n           \n           \n           \n          \n          \n          "
  },
  {
    "path": "midi/EventDispatcher.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n# std library\nfrom struct import unpack\n\n# custom\nfrom DataTypeConverters import readBew, readVar, varLen, toBytes\n\n# uhh I don't really like this, but there are so many constants to \n# import otherwise\nfrom constants import *\n\n\nclass EventDispatcher:\n\n\n    def __init__(self, outstream):\n        \n        \"\"\"\n        \n        The event dispatcher generates events on the outstream.\n        \n        \"\"\"\n        \n        # internal values, don't mess with 'em directly\n        self.outstream = outstream\n        \n        # public flags\n\n        # A note_on with a velocity of 0x00 is actually the same as a \n        # note_off with a velocity of 0x40. When \n        # \"convert_zero_velocity\" is set, the zero velocity note_on's \n        # automatically gets converted into note_off's. This is a less \n        # suprising behaviour for those that are not into the intimate \n        # details of the midi spec.\n        self.convert_zero_velocity = 1\n        \n        # If dispatch_continuos_controllers is true, continuos \n        # controllers gets dispatched to their defined handlers. Else \n        # they just trigger the \"continuous_controller\" event handler.\n        self.dispatch_continuos_controllers = 1 # NOT IMPLEMENTED YET\n        \n        # If dispatch_meta_events is true, meta events get's dispatched \n        # to their defined events. Else they all they trigger the \n        # \"meta_event\" handler.\n        self.dispatch_meta_events = 1\n\n\n\n    def header(self, format, nTracks, division):\n        \"Triggers the header event\"\n        self.outstream.header(format, nTracks, division)\n\n\n    def start_of_track(self, current_track):\n        \"Triggers the start of track event\"\n        \n        # I do this twice so that users can overwrite the \n        # start_of_track event handler without worrying whether the \n        # track number is updated correctly.\n        self.outstream.set_current_track(current_track)\n        self.outstream.start_of_track(current_track)\n        \n    \n    def sysex_event(self, data):\n        \"Dispatcher for sysex events\"\n        self.outstream.sysex_event(data)\n    \n    \n    def eof(self):\n        \"End of file!\"\n        self.outstream.eof()\n\n\n    def update_time(self, new_time=0, relative=1):\n        \"Updates relative/absolute time.\"\n        self.outstream.update_time(new_time, relative)\n        \n        \n    def reset_time(self):\n        \"Updates relative/absolute time.\"\n        self.outstream.reset_time()\n        \n        \n    # Event dispatchers for similar types of events\n    \n    \n    def channel_messages(self, hi_nible, channel, data):\n    \n        \"Dispatches channel messages\"\n        \n        stream = self.outstream\n        data = toBytes(data)\n        \n        if (NOTE_ON & 0xF0) == hi_nible:\n            note, velocity = data\n            # note_on with velocity 0x00 are same as note \n            # off with velocity 0x40 according to spec!\n            if velocity==0 and self.convert_zero_velocity:\n                stream.note_off(channel, note, 0x40)\n            else:\n                stream.note_on(channel, note, velocity)\n        \n        elif (NOTE_OFF & 0xF0) == hi_nible:\n            note, velocity = data\n            stream.note_off(channel, note, velocity)\n        \n        elif (AFTERTOUCH & 0xF0) == hi_nible:\n            note, velocity = data\n            stream.aftertouch(channel, note, velocity)\n        \n        elif (CONTINUOUS_CONTROLLER & 0xF0) == hi_nible:\n            controller, value = data\n            # A lot of the cc's are defined, so we trigger those directly\n            if self.dispatch_continuos_controllers:\n                self.continuous_controllers(channel, controller, value)\n            else:\n                stream.continuous_controller(channel, controller, value)\n            \n        elif (PATCH_CHANGE & 0xF0) == hi_nible:\n            program = data[0]\n            stream.patch_change(channel, program)\n            \n        elif (CHANNEL_PRESSURE & 0xF0) == hi_nible:\n            pressure = data[0]\n            stream.channel_pressure(channel, pressure)\n            \n        elif (PITCH_BEND & 0xF0) == hi_nible:\n            hibyte, lobyte = data\n            value = (hibyte<<7) + lobyte\n            stream.pitch_bend(channel, value)\n\n        else:\n\n            raise ValueError, 'Illegal channel message!'\n\n\n\n    def continuous_controllers(self, channel, controller, value):\n    \n        \"Dispatches channel messages\"\n\n        stream = self.outstream\n        \n        # I am not really shure if I ought to dispatch continuous controllers\n        # There's so many of them that it can clutter up the OutStream \n        # classes.\n        \n        # So I just trigger the default event handler\n        stream.continuous_controller(channel, controller, value)\n\n\n\n    def system_commons(self, common_type, common_data):\n    \n        \"Dispatches system common messages\"\n        \n        stream = self.outstream\n        \n        # MTC Midi time code Quarter value\n        if common_type == MTC:\n            data = readBew(common_data)\n            msg_type = (data & 0x07) >> 4\n            values = (data & 0x0F)\n            stream.midi_time_code(msg_type, values)\n        \n        elif common_type == SONG_POSITION_POINTER:\n            hibyte, lobyte = toBytes(common_data)\n            value = (hibyte<<7) + lobyte\n            stream.song_position_pointer(value)\n\n        elif common_type == SONG_SELECT:\n            data = readBew(common_data)\n            stream.song_select(data)\n\n        elif common_type == TUNING_REQUEST:\n            # no data then\n            stream.tuning_request(time=None)\n\n\n\n    def meta_event(self, meta_type, data):\n        \n        \"Dispatches meta events\"\n        \n        stream = self.outstream\n        \n        # SEQUENCE_NUMBER = 0x00 (00 02 ss ss (seq-number))\n        if meta_type == SEQUENCE_NUMBER:\n            number = readBew(data)\n            stream.sequence_number(number)\n        \n        # TEXT = 0x01 (01 len text...)\n        elif meta_type == TEXT:\n            stream.text(data)\n        \n        # COPYRIGHT = 0x02 (02 len text...)\n        elif meta_type == COPYRIGHT:\n            stream.copyright(data)\n        \n        # SEQUENCE_NAME = 0x03 (03 len text...)\n        elif meta_type == SEQUENCE_NAME:\n            stream.sequence_name(data)\n        \n        # INSTRUMENT_NAME = 0x04 (04 len text...)\n        elif meta_type == INSTRUMENT_NAME:\n            stream.instrument_name(data)\n        \n        # LYRIC = 0x05 (05 len text...)\n        elif meta_type == LYRIC:\n            stream.lyric(data)\n        \n        # MARKER = 0x06 (06 len text...)\n        elif meta_type == MARKER:\n            stream.marker(data)\n        \n        # CUEPOINT = 0x07 (07 len text...)\n        elif meta_type == CUEPOINT:\n            stream.cuepoint(data)\n        \n        # PROGRAM_NAME = 0x08 (05 len text...)\n        elif meta_type == PROGRAM_NAME:\n            stream.program_name(data)\n        \n        # DEVICE_NAME = 0x09 (09 len text...)\n        elif meta_type == DEVICE_NAME:\n            stream.device_name(data)\n        \n        # MIDI_CH_PREFIX = 0x20 (20 01 channel)\n        elif meta_type == MIDI_CH_PREFIX:\n            channel = readBew(data)\n            stream.midi_ch_prefix(channel)\n        \n        # MIDI_PORT  = 0x21 (21 01 port (legacy stuff))\n        elif meta_type == MIDI_PORT:\n            port = readBew(data)\n            stream.midi_port(port)\n        \n        # END_OFF_TRACK = 0x2F (2F 00)\n        elif meta_type == END_OF_TRACK:\n            stream.end_of_track()\n        \n        # TEMPO = 0x51 (51 03 tt tt tt (tempo in us/quarternote))\n        elif meta_type == TEMPO:\n            b1, b2, b3 = toBytes(data)\n            # uses 3 bytes to represent time between quarter \n            # notes in microseconds\n            stream.tempo((b1<<16) + (b2<<8) + b3)\n        \n        # SMTP_OFFSET = 0x54 (54 05 hh mm ss ff xx)\n        elif meta_type == SMTP_OFFSET:\n            hour, minute, second, frame, framePart = toBytes(data)\n            stream.smtp_offset(\n                    hour, minute, second, frame, framePart)\n        \n        # TIME_SIGNATURE = 0x58 (58 04 nn dd cc bb)\n        elif meta_type == TIME_SIGNATURE:\n            nn, dd, cc, bb = toBytes(data)\n            stream.time_signature(nn, dd, cc, bb)\n        \n        # KEY_SIGNATURE = 0x59 (59 02 sf mi)\n        elif meta_type == KEY_SIGNATURE:\n            sf, mi = toBytes(data)\n            stream.key_signature(sf, mi)\n        \n        # SPECIFIC = 0x7F (Sequencer specific event)\n        elif meta_type == SPECIFIC:\n            meta_data = toBytes(data)\n            stream.sequencer_specific(meta_data)\n        \n        # Handles any undefined meta events\n        else: # undefined meta type\n            meta_data = toBytes(data)\n            stream.meta_event(meta_type, meta_data)\n\n\n\n\n\nif __name__ == '__main__':\n\n\n    from MidiToText import MidiToText\n    \n    outstream = MidiToText()\n    dispatcher = EventDispatcher(outstream)\n    dispatcher.channel_messages(NOTE_ON, 0x00, '\\x40\\x40')"
  },
  {
    "path": "midi/Icon_",
    "content": ""
  },
  {
    "path": "midi/MidiFileParser.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n# std library\nfrom struct import unpack\n\n# uhh I don't really like this, but there are so many constants to \n# import otherwise\nfrom constants import *\n\nfrom EventDispatcher import EventDispatcher\n\nclass MidiFileParser:\n\n    \"\"\"\n    \n    The MidiFileParser is the lowest level parser that see the data as \n    midi data. It generates events that gets triggered on the outstream.\n    \n    \"\"\"\n\n    def __init__(self, raw_in, outstream):\n\n        \"\"\"\n        raw_data is the raw content of a midi file as a string.\n        \"\"\"\n\n        # internal values, don't mess with 'em directly\n        self.raw_in = raw_in\n        self.dispatch = EventDispatcher(outstream)\n\n        # Used to keep track of stuff\n        self._running_status = None\n\n\n\n\n    def parseMThdChunk(self):\n        \n        \"Parses the header chunk\"\n        \n        raw_in = self.raw_in\n\n        header_chunk_type = raw_in.nextSlice(4)\n        header_chunk_zise = raw_in.readBew(4)\n\n        # check if it is a proper midi file\n        if header_chunk_type != 'MThd':\n            raise TypeError, \"It is not a valid midi file!\"\n\n        # Header values are at fixed locations, so no reason to be clever\n        self.format = raw_in.readBew(2)\n        self.nTracks = raw_in.readBew(2)\n        self.division = raw_in.readBew(2)\n        \n        # Theoretically a header larger than 6 bytes can exist\n        # but no one has seen one in the wild\n        # But correctly ignore unknown data if it is though\n        if header_chunk_zise > 6:\n            raw_in.moveCursor(header_chunk_zise-6)\n\n        # call the header event handler on the stream\n        self.dispatch.header(self.format, self.nTracks, self.division)\n\n\n\n    def parseMTrkChunk(self):\n        \n        \"Parses a track chunk. This is the most important part of the parser.\"\n        \n        # set time to 0 at start of a track\n        self.dispatch.reset_time()\n        \n        dispatch = self.dispatch\n        raw_in = self.raw_in\n        \n        # Trigger event at the start of a track\n        dispatch.start_of_track(self._current_track)\n        # position cursor after track header\n        raw_in.moveCursor(4)\n        # unsigned long is 4 bytes\n        tracklength = raw_in.readBew(4)\n        track_endposition = raw_in.getCursor() + tracklength # absolute position!\n\n        while raw_in.getCursor() < track_endposition:\n        \n            # find relative time of the event\n            time = raw_in.readVarLen()\n            dispatch.update_time(time)\n            \n            # be aware of running status!!!!\n            peak_ahead = raw_in.readBew(move_cursor=0)\n            if (peak_ahead & 0x80): \n                # the status byte has the high bit set, so it\n                # was not running data but proper status byte\n                status = self._running_status = raw_in.readBew()\n            else:\n                # use that darn running status\n                status = self._running_status\n                # could it be illegal data ?? Do we need to test for that?\n                # I need more example midi files to be shure.\n                \n                # Also, while I am almost certain that no realtime \n                # messages will pop up in a midi file, I might need to \n                # change my mind later.\n\n            # we need to look at nibbles here\n            hi_nible, lo_nible = status & 0xF0, status & 0x0F\n            \n            # match up with events\n\n            # Is it a meta_event ??\n            # these only exists in midi files, not in transmitted midi data\n            # In transmitted data META_EVENT (0xFF) is a system reset\n            if status == META_EVENT:\n                meta_type = raw_in.readBew()\n                meta_length = raw_in.readVarLen()\n                meta_data = raw_in.nextSlice(meta_length)\n                dispatch.meta_event(meta_type, meta_data)\n\n\n            # Is it a sysex_event ??\n            elif status == SYSTEM_EXCLUSIVE:\n                # ignore sysex events\n                sysex_length = raw_in.readVarLen()\n                # don't read sysex terminator\n                sysex_data = raw_in.nextSlice(sysex_length-1)\n                # only read last data byte if it is a sysex terminator\n                # It should allways be there, but better safe than sorry\n                if raw_in.readBew(move_cursor=0) == END_OFF_EXCLUSIVE:\n                    eo_sysex = raw_in.readBew()\n                dispatch.sysex_event(sysex_data)\n                # the sysex code has not been properly tested, and might be fishy!\n\n\n            # is it a system common event?\n            elif hi_nible == 0xF0: # Hi bits are set then\n                data_sizes = {\n                    MTC:1,\n                    SONG_POSITION_POINTER:2,\n                    SONG_SELECT:1,\n                }\n                data_size = data_sizes.get(hi_nible, 0)\n                common_data = raw_in.nextSlice(data_size)\n                common_type = lo_nible\n                dispatch.system_common(common_type, common_data)\n            \n\n            # Oh! Then it must be a midi event (channel voice message)\n            else:\n                data_sizes = {\n                    PATCH_CHANGE:1,\n                    CHANNEL_PRESSURE:1,\n                    NOTE_OFF:2,\n                    NOTE_ON:2,\n                    AFTERTOUCH:2,\n                    CONTINUOUS_CONTROLLER:2,\n                    PITCH_BEND:2,\n                }\n                data_size = data_sizes.get(hi_nible, 0)\n                channel_data = raw_in.nextSlice(data_size)\n                event_type, channel = hi_nible, lo_nible\n                dispatch.channel_messages(event_type, channel, channel_data)\n\n\n    def parseMTrkChunks(self):\n        \"Parses all track chunks.\"\n        for t in range(self.nTracks):\n            self._current_track = t\n            self.parseMTrkChunk() # this is where it's at!\n        self.dispatch.eof()\n\n\n\nif __name__ == '__main__':\n\n    # get data\n    test_file = 'test/midifiles/minimal.mid'\n    test_file = 'test/midifiles/cubase-minimal.mid'\n    test_file = 'test/midifiles/Lola.mid'\n#    f = open(test_file, 'rb')\n#    raw_data = f.read()\n#    f.close()\n#    \n#    \n#    # do parsing\n    from MidiToText import MidiToText\n    from RawInstreamFile import RawInstreamFile\n\n    midi_in = MidiFileParser(RawInstreamFile(test_file), MidiToText())\n    midi_in.parseMThdChunk()\n    midi_in.parseMTrkChunks()\n    "
  },
  {
    "path": "midi/MidiInFile.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nfrom RawInstreamFile import RawInstreamFile\nfrom MidiFileParser import MidiFileParser\n\n\nclass MidiInFile:\n\n    \"\"\"\n    \n    Parses a midi file, and triggers the midi events on the outStream \n    object.\n    \n    Get example data from a minimal midi file, generated with cubase.\n    >>> test_file = 'C:/Documents and Settings/maxm/Desktop/temp/midi/src/midi/tests/midifiles/minimal-cubase-type0.mid'\n    \n    Do parsing, and generate events with MidiToText,\n    so we can see what a minimal midi file contains\n    >>> from MidiToText import MidiToText\n    >>> midi_in = MidiInFile(MidiToText(), test_file)\n    >>> midi_in.read()\n    format: 0, nTracks: 1, division: 480\n    ----------------------------------\n    <BLANKLINE>\n    Start - track #0\n    sequence_name: Type 0\n    tempo: 500000\n    time_signature: 4 2 24 8\n    note_on  - ch:00,  note:48,  vel:64 time:0\n    note_off - ch:00,  note:48,  vel:40 time:480\n    End of track\n    <BLANKLINE>\n    End of file\n    \n    \n    \"\"\"\n\n    def __init__(self, outStream, infile):\n        # these could also have been mixins, would that be better? Nah!\n        self.raw_in = RawInstreamFile(infile)\n        self.parser = MidiFileParser(self.raw_in, outStream)\n\n\n    def read(self):\n        \"Start parsing the file\"\n        p = self.parser\n        p.parseMThdChunk()\n        p.parseMTrkChunks()\n\n\n    def setData(self, data=''):\n        \"Sets the data from a plain string\"\n        self.raw_in.setData(data)\n    \n    \n"
  },
  {
    "path": "midi/MidiInStream.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nfrom MidiOutStream import MidiOutStream\n\nclass MidiInStream:\n\n    \"\"\"\n    Takes midi events from the midi input and calls the apropriate\n    method in the eventhandler object\n    \"\"\"\n\n    def __init__(self, midiOutStream, device):\n\n        \"\"\"\n\n        Sets a default output stream, and sets the device from where\n        the input comes\n\n        \"\"\"\n\n        if midiOutStream is None:\n            self.midiOutStream = MidiOutStream()\n        else:\n            self.midiOutStream = midiOutStream\n\n\n    def close(self):\n\n        \"\"\"\n        Stop the MidiInstream\n        \"\"\"\n\n\n    def read(self, time=0):\n\n        \"\"\"\n\n        Start the MidiInstream.\n\n        \"time\" sets timer to specific start value.\n\n        \"\"\"\n\n\n    def resetTimer(self, time=0):\n        \"\"\"\n\n        Resets the timer, probably a good idea if there is some kind\n        of looping going on\n\n        \"\"\"\n\n"
  },
  {
    "path": "midi/MidiOutFile.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nfrom MidiOutStream import MidiOutStream\nfrom RawOutstreamFile import RawOutstreamFile\n\nfrom constants import *\nfrom DataTypeConverters import fromBytes, writeVar\n\nclass MidiOutFile(MidiOutStream):\n\n\n    \"\"\"\n    MidiOutFile is an eventhandler that subclasses MidiOutStream.\n    \"\"\"\n\n\n    def __init__(self, raw_out=''):\n\n        self.raw_out = RawOutstreamFile(raw_out)\n        MidiOutStream.__init__(self)\n        \n    \n    def write(self):\n        self.raw_out.write()\n\n\n    def event_slice(self, slc):\n        \"\"\"\n        Writes the slice of an event to the current track. Correctly \n        inserting a varlen timestamp too.\n        \"\"\"\n        trk = self._current_track_buffer\n        trk.writeVarLen(self.rel_time())\n        trk.writeSlice(slc)\n        \n    \n    #####################\n    ## Midi events\n\n\n    def note_on(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        slc = fromBytes([NOTE_ON + channel, note, velocity])\n        self.event_slice(slc)\n\n\n    def note_off(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        slc = fromBytes([NOTE_OFF + channel, note, velocity])\n        self.event_slice(slc)\n\n\n    def aftertouch(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        slc = fromBytes([AFTERTOUCH + channel, note, velocity])\n        self.event_slice(slc)\n\n\n    def continuous_controller(self, channel, controller, value):\n\n        \"\"\"\n        channel: 0-15\n        controller, value: 0-127\n        \"\"\"\n        slc = fromBytes([CONTINUOUS_CONTROLLER + channel, controller, value])\n        self.event_slice(slc)\n        # These should probably be implemented\n        # http://users.argonet.co.uk/users/lenny/midi/tech/spec.html#ctrlnums\n\n\n    def patch_change(self, channel, patch):\n\n        \"\"\"\n        channel: 0-15\n        patch: 0-127\n        \"\"\"\n        slc = fromBytes([PATCH_CHANGE + channel, patch])\n        self.event_slice(slc)\n\n\n    def channel_pressure(self, channel, pressure):\n\n        \"\"\"\n        channel: 0-15\n        pressure: 0-127\n        \"\"\"\n        slc = fromBytes([CHANNEL_PRESSURE + channel, pressure])\n        self.event_slice(slc)\n\n\n    def pitch_bend(self, channel, value):\n\n        \"\"\"\n        channel: 0-15\n        value: 0-16383\n        \"\"\"\n        msb = (value>>7) & 0xFF\n        lsb = value & 0xFF\n        slc = fromBytes([PITCH_BEND + channel, msb, lsb])\n        self.event_slice(slc)\n\n\n\n\n    #####################\n    ## System Exclusive\n\n#    def sysex_slice(sysex_type, data):\n#        \"\"\n#        sysex_len = writeVar(len(data)+1)\n#        self.event_slice(SYSTEM_EXCLUSIVE + sysex_len + data + END_OFF_EXCLUSIVE)\n#\n    def system_exclusive(self, data):\n\n        \"\"\"\n        data: list of values in range(128)\n        \"\"\"\n        sysex_len = writeVar(len(data)+1)\n        self.event_slice(chr(SYSTEM_EXCLUSIVE) + sysex_len + data + chr(END_OFF_EXCLUSIVE))\n\n\n    #####################\n    ## Common events\n\n    def midi_time_code(self, msg_type, values):\n        \"\"\"\n        msg_type: 0-7\n        values: 0-15\n        \"\"\"\n        value = (msg_type<<4) + values\n        self.event_slice(fromBytes([MIDI_TIME_CODE, value]))\n\n\n    def song_position_pointer(self, value):\n\n        \"\"\"\n        value: 0-16383\n        \"\"\"\n        lsb = (value & 0x7F)\n        msb = (value >> 7) & 0x7F\n        self.event_slice(fromBytes([SONG_POSITION_POINTER, lsb, msb]))\n\n\n    def song_select(self, songNumber):\n\n        \"\"\"\n        songNumber: 0-127\n        \"\"\"\n        self.event_slice(fromBytes([SONG_SELECT, songNumber]))\n\n\n    def tuning_request(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        self.event_slice(chr(TUNING_REQUEST))\n\n            \n    #########################\n    # header does not really belong here. But anyhoo!!!\n    \n    def header(self, format=0, nTracks=1, division=96):\n\n        \"\"\"\n        format: type of midi file in [0,1,2]\n        nTracks: number of tracks. 1 track for type 0 file\n        division: timing division ie. 96 ppq.\n        \n        \"\"\"        \n        raw = self.raw_out\n        raw.writeSlice('MThd')\n        bew = raw.writeBew\n        bew(6, 4) # header size\n        bew(format, 2)\n        bew(nTracks, 2)\n        bew(division, 2)\n\n\n    def eof(self):\n\n        \"\"\"\n        End of file. No more events to be processed.\n        \"\"\"\n        # just write the file then.\n        self.write()\n\n\n    #####################\n    ## meta events\n\n\n    def meta_slice(self, meta_type, data_slice):\n        \"Writes a meta event\"\n        slc = fromBytes([META_EVENT, meta_type]) + \\\n                         writeVar(len(data_slice)) +  data_slice\n        self.event_slice(slc)\n\n\n    def meta_event(self, meta_type, data):\n        \"\"\"\n        Handles any undefined meta events\n        \"\"\"\n        self.meta_slice(meta_type, fromBytes(data))\n\n\n    def start_of_track(self, n_track=0):\n        \"\"\"\n        n_track: number of track\n        \"\"\"\n        self._current_track_buffer = RawOutstreamFile()\n        self.reset_time()\n        self._current_track += 1\n\n\n    def end_of_track(self):\n        \"\"\"\n        Writes the track to the buffer.\n        \"\"\"\n        raw = self.raw_out\n        raw.writeSlice(TRACK_HEADER)\n        track_data = self._current_track_buffer.getvalue()\n        # wee need to know size of track data.\n        eot_slice = writeVar(self.rel_time()) + fromBytes([META_EVENT, END_OF_TRACK, 0])\n        raw.writeBew(len(track_data)+len(eot_slice), 4)\n        # then write\n        raw.writeSlice(track_data)\n        raw.writeSlice(eot_slice)\n        \n\n\n    def sequence_number(self, value):\n\n        \"\"\"\n        value: 0-65535\n        \"\"\"\n        self.meta_slice(meta_type, writeBew(value, 2))\n\n\n    def text(self, text):\n        \"\"\"\n        Text event\n        text: string\n        \"\"\"\n        self.meta_slice(TEXT, text)\n\n\n    def copyright(self, text):\n\n        \"\"\"\n        Copyright notice\n        text: string\n        \"\"\"\n        self.meta_slice(COPYRIGHT, text)\n\n\n    def sequence_name(self, text):\n        \"\"\"\n        Sequence/track name\n        text: string\n        \"\"\"\n        self.meta_slice(SEQUENCE_NAME, text)\n\n\n    def instrument_name(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        self.meta_slice(INSTRUMENT_NAME, text)\n\n\n    def lyric(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        self.meta_slice(LYRIC, text)\n\n\n    def marker(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        self.meta_slice(MARKER, text)\n\n\n    def cuepoint(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        self.meta_slice(CUEPOINT, text)\n\n\n    def midi_ch_prefix(self, channel):\n\n        \"\"\"\n        channel: midi channel for subsequent data\n        (deprecated in the spec)\n        \"\"\"\n        self.meta_slice(MIDI_CH_PREFIX, chr(channel))\n\n\n    def midi_port(self, value):\n\n        \"\"\"\n        value: Midi port (deprecated in the spec)\n        \"\"\"\n        self.meta_slice(MIDI_CH_PREFIX, chr(value))\n\n\n    def tempo(self, value):\n\n        \"\"\"\n        value: 0-2097151\n        tempo in us/quarternote\n        (to calculate value from bpm: int(60,000,000.00 / BPM))\n        \"\"\"\n        hb, mb, lb = (value>>16 & 0xff), (value>>8 & 0xff), (value & 0xff)\n        self.meta_slice(TEMPO, fromBytes([hb, mb, lb]))\n\n\n    def smtp_offset(self, hour, minute, second, frame, framePart):\n\n        \"\"\"\n        hour,\n        minute,\n        second: 3 bytes specifying the hour (0-23), minutes (0-59) and \n                seconds (0-59), respectively. The hour should be \n                encoded with the SMPTE format, just as it is in MIDI \n                Time Code.\n        frame: A byte specifying the number of frames per second (one \n               of : 24, 25, 29, 30).\n        framePart: A byte specifying the number of fractional frames, \n                   in 100ths of a frame (even in SMPTE-based tracks \n                   using a different frame subdivision, defined in the \n                   MThd chunk).\n        \"\"\"\n        self.meta_slice(SMTP_OFFSET, fromBytes([hour, minute, second, frame, framePart]))\n\n\n\n    def time_signature(self, nn, dd, cc, bb):\n\n        \"\"\"\n        nn: Numerator of the signature as notated on sheet music\n        dd: Denominator of the signature as notated on sheet music\n            The denominator is a negative power of 2: 2 = quarter \n            note, 3 = eighth, etc.\n        cc: The number of MIDI clocks in a metronome click\n        bb: The number of notated 32nd notes in a MIDI quarter note \n            (24 MIDI clocks)        \n        \"\"\"\n        self.meta_slice(TIME_SIGNATURE, fromBytes([nn, dd, cc, bb]))\n\n\n\n\n    def key_signature(self, sf, mi):\n\n        \"\"\"\n        sf: is a byte specifying the number of flats (-ve) or sharps \n            (+ve) that identifies the key signature (-7 = 7 flats, -1 \n            = 1 flat, 0 = key of C, 1 = 1 sharp, etc).\n        mi: is a byte specifying a major (0) or minor (1) key.\n        \"\"\"\n        self.meta_slice(KEY_SIGNATURE, fromBytes([sf, mi]))\n\n\n\n    def sequencer_specific(self, data):\n\n        \"\"\"\n        data: The data as byte values\n        \"\"\"\n        self.meta_slice(SEQUENCER_SPECIFIC, data)\n\n\n\n\n\n#    #####################\n#    ## realtime events\n\n#    These are of no use in a midi file, so they are ignored!!!\n\n#    def timing_clock(self):\n#    def song_start(self):\n#    def song_stop(self):\n#    def song_continue(self):\n#    def active_sensing(self):\n#    def system_reset(self):\n\n\n\nif __name__ == '__main__':\n\n    out_file = 'test/midifiles/midiout.mid'\n    midi = MidiOutFile(out_file)\n\n#format: 0, nTracks: 1, division: 480\n#----------------------------------\n#\n#Start - track #0\n#sequence_name: Type 0\n#tempo: 500000\n#time_signature: 4 2 24 8\n#note_on  - ch:00,  note:48,  vel:64 time:0\n#note_off - ch:00,  note:48,  vel:40 time:480\n#End of track\n#\n#End of file\n\n\n    midi.header(0, 1, 480)\n    \n    midi.start_of_track()\n    midi.sequence_name('Type 0')\n    midi.tempo(750000)\n    midi.time_signature(4, 2, 24, 8)\n    ch = 0\n    for i in range(127):\n        midi.note_on(ch, i, 0x64)\n        midi.update_time(96)\n        midi.note_off(ch, i, 0x40)\n        midi.update_time(0)\n    \n    midi.update_time(0)\n    midi.end_of_track()\n    \n    midi.eof() # currently optional, should it do the write instead of write??\n\n\n    midi.write()"
  },
  {
    "path": "midi/MidiOutStream.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nclass MidiOutStream:\n\n\n    \"\"\"\n\n    MidiOutstream is Basically an eventhandler. It is the most central\n    class in the Midi library. You use it both for writing events to\n    an output stream, and as an event handler for an input stream.\n\n    This makes it extremely easy to take input from one stream and\n    send it to another. Ie. if you want to read a Midi file, do some\n    processing, and send it to a midiport.\n\n    All time values are in absolute values from the opening of a\n    stream. To calculate time values, please use the MidiTime and\n    MidiDeltaTime classes.\n\n    \"\"\"\n\n    def __init__(self):\n        \n        # the time is rather global, so it needs to be stored \n        # here. Otherwise there would be no really simple way to \n        # calculate it. The alternative would be to have each event \n        # handler do it. That sucks even worse!\n        self._absolute_time = 0\n        self._relative_time = 0\n        self._current_track = 0\n        self._running_status = None\n\n    # time handling event handlers. They should be overwritten with care\n\n    def update_time(self, new_time=0, relative=1):\n        \"\"\"\n        Updates the time, if relative is true, new_time is relative, \n        else it's absolute.\n        \"\"\"\n        if relative:\n            self._relative_time = new_time\n            self._absolute_time += new_time\n        else:\n            self._relative_time = new_time - self._absolute_time\n            self._absolute_time = new_time\n\n    def reset_time(self):\n        \"\"\"\n        reset time to 0\n        \"\"\"\n        self._relative_time = 0\n        self._absolute_time = 0\n        \n    def rel_time(self):\n        \"Returns the relative time\"\n        return self._relative_time\n\n    def abs_time(self):\n        \"Returns the absolute time\"\n        return self._absolute_time\n\n    # running status methods\n    \n    def reset_run_stat(self):\n        \"Invalidates the running status\"\n        self._running_status = None\n\n    def set_run_stat(self, new_status):\n        \"Set the new running status\"\n        self._running_status = new_status\n\n    def get_run_stat(self):\n        \"Set the new running status\"\n        return self._running_status\n\n    # track handling event handlers\n    \n    def set_current_track(self, new_track):\n        \"Sets the current track number\"\n        self._current_track = new_track\n    \n    def get_current_track(self):\n        \"Returns the current track number\"\n        return self._current_track\n    \n    \n    #####################\n    ## Midi events\n\n\n    def channel_message(self, message_type, channel, data):\n        \"\"\"The default event handler for channel messages\"\"\"\n        pass\n\n\n    def note_on(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        pass\n\n\n    def note_off(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        pass\n\n\n    def aftertouch(self, channel=0, note=0x40, velocity=0x40):\n\n        \"\"\"\n        channel: 0-15\n        note, velocity: 0-127\n        \"\"\"\n        pass\n\n\n    def continuous_controller(self, channel, controller, value):\n\n        \"\"\"\n        channel: 0-15\n        controller, value: 0-127\n        \"\"\"\n        pass\n\n\n    def patch_change(self, channel, patch):\n\n        \"\"\"\n        channel: 0-15\n        patch: 0-127\n        \"\"\"\n        pass\n\n\n    def channel_pressure(self, channel, pressure):\n\n        \"\"\"\n        channel: 0-15\n        pressure: 0-127\n        \"\"\"\n        pass\n\n\n    def pitch_bend(self, channel, value):\n\n        \"\"\"\n        channel: 0-15\n        value: 0-16383\n\n        \"\"\"\n        pass\n\n\n\n\n    #####################\n    ## System Exclusive\n\n    def system_exclusive(self, data):\n\n        \"\"\"\n        data: list of values in range(128)\n        \"\"\"\n        pass\n\n\n    #####################\n    ## Common events\n\n    def song_position_pointer(self, value):\n\n        \"\"\"\n        value: 0-16383\n        \"\"\"\n        pass\n\n\n    def song_select(self, songNumber):\n\n        \"\"\"\n        songNumber: 0-127\n        \"\"\"\n        pass\n\n\n    def tuning_request(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n            \n    def midi_time_code(self, msg_type, values):\n        \"\"\"\n        msg_type: 0-7\n        values: 0-15\n        \"\"\"\n        pass\n\n\n    #########################\n    # header does not really belong here. But anyhoo!!!\n    \n    def header(self, format=0, nTracks=1, division=96):\n\n        \"\"\"\n        format: type of midi file in [1,2]\n        nTracks: number of tracks\n        division: timing division\n        \"\"\"\n        pass\n\n\n    def eof(self):\n\n        \"\"\"\n        End of file. No more events to be processed.\n        \"\"\"\n        pass\n\n\n    #####################\n    ## meta events\n\n\n    def meta_event(self, meta_type, data):\n        \n        \"\"\"\n        Handles any undefined meta events\n        \"\"\"\n        pass\n\n\n    def start_of_track(self, n_track=0):\n\n        \"\"\"\n        n_track: number of track\n        \"\"\"\n        pass\n\n\n    def end_of_track(self):\n\n        \"\"\"\n        n_track: number of track\n        \"\"\"\n        pass\n\n\n    def sequence_number(self, value):\n\n        \"\"\"\n        value: 0-16383\n        \"\"\"\n        pass\n\n\n    def text(self, text):\n\n        \"\"\"\n        Text event\n        text: string\n        \"\"\"\n        pass\n\n\n    def copyright(self, text):\n\n        \"\"\"\n        Copyright notice\n        text: string\n        \"\"\"\n        pass\n\n\n    def sequence_name(self, text):\n\n        \"\"\"\n        Sequence/track name\n        text: string\n        \"\"\"\n        pass\n\n\n    def instrument_name(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        pass\n\n\n    def lyric(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        pass\n\n\n    def marker(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        pass\n\n\n    def cuepoint(self, text):\n\n        \"\"\"\n        text: string\n        \"\"\"\n        pass\n\n\n    def midi_ch_prefix(self, channel):\n\n        \"\"\"\n        channel: midi channel for subsequent data (deprecated in the spec)\n        \"\"\"\n        pass\n\n\n    def midi_port(self, value):\n\n        \"\"\"\n        value: Midi port (deprecated in the spec)\n        \"\"\"\n        pass\n\n\n    def tempo(self, value):\n\n        \"\"\"\n        value: 0-2097151\n        tempo in us/quarternote\n        (to calculate value from bpm: int(60,000,000.00 / BPM))\n        \"\"\"\n        pass\n\n\n    def smtp_offset(self, hour, minute, second, frame, framePart):\n\n        \"\"\"\n        hour,\n        minute,\n        second: 3 bytes specifying the hour (0-23), minutes (0-59) and \n                seconds (0-59), respectively. The hour should be \n                encoded with the SMPTE format, just as it is in MIDI \n                Time Code.\n        frame: A byte specifying the number of frames per second (one \n               of : 24, 25, 29, 30).\n        framePart: A byte specifying the number of fractional frames, \n                   in 100ths of a frame (even in SMPTE-based tracks \n                   using a different frame subdivision, defined in the \n                   MThd chunk).\n        \"\"\"\n        pass\n\n\n\n    def time_signature(self, nn, dd, cc, bb):\n\n        \"\"\"\n        nn: Numerator of the signature as notated on sheet music\n        dd: Denominator of the signature as notated on sheet music\n            The denominator is a negative power of 2: 2 = quarter \n            note, 3 = eighth, etc.\n        cc: The number of MIDI clocks in a metronome click\n        bb: The number of notated 32nd notes in a MIDI quarter note \n            (24 MIDI clocks)        \n        \"\"\"\n        pass\n\n\n\n    def key_signature(self, sf, mi):\n\n        \"\"\"\n        sf: is a byte specifying the number of flats (-ve) or sharps \n            (+ve) that identifies the key signature (-7 = 7 flats, -1 \n            = 1 flat, 0 = key of C, 1 = 1 sharp, etc).\n        mi: is a byte specifying a major (0) or minor (1) key.\n        \"\"\"\n        pass\n\n\n\n    def sequencer_specific(self, data):\n\n        \"\"\"\n        data: The data as byte values\n        \"\"\"\n        pass\n\n\n\n\n    #####################\n    ## realtime events\n\n    def timing_clock(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\n    def song_start(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\n    def song_stop(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\n    def song_continue(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\n    def active_sensing(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\n    def system_reset(self):\n\n        \"\"\"\n        No values passed\n        \"\"\"\n        pass\n\n\n\nif __name__ == '__main__':\n\n    midiOut = MidiOutStream()\n    midiOut.update_time(0,0)\n    midiOut.note_on(0, 63, 127)\n    midiOut.note_off(0, 63, 127)\n\n    "
  },
  {
    "path": "midi/MidiToText.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\nfrom MidiOutStream import MidiOutStream\nclass MidiToText(MidiOutStream):\n\n\n    \"\"\"\n    This class renders a midi file as text. It is mostly used for debugging\n    \"\"\"\n\n    #############################\n    # channel events\n    \n    \n    def channel_message(self, message_type, channel, data):\n        \"\"\"The default event handler for channel messages\"\"\"\n        print 'message_type:%X, channel:%X, data size:%X' % (message_type, channel, len(data))\n\n\n    def note_on(self, channel=0, note=0x40, velocity=0x40):\n        print 'note_on  - ch:%02X,  note:%02X,  vel:%02X time:%s' % (channel, note, velocity, self.rel_time())\n\n    def note_off(self, channel=0, note=0x40, velocity=0x40):\n        print 'note_off - ch:%02X,  note:%02X,  vel:%02X time:%s' % (channel, note, velocity, self.rel_time())\n\n    def aftertouch(self, channel=0, note=0x40, velocity=0x40):\n        print 'aftertouch', channel, note, velocity\n\n\n    def continuous_controller(self, channel, controller, value):\n        print 'controller - ch: %02X, cont: #%02X, value: %02X' % (channel, controller, value)\n\n\n    def patch_change(self, channel, patch):\n        print 'patch_change - ch:%02X, patch:%02X' % (channel, patch)\n\n\n    def channel_pressure(self, channel, pressure):\n        print 'channel_pressure', channel, pressure\n\n\n    def pitch_bend(self, channel, value):\n        print 'pitch_bend ch:%s, value:%s' % (channel, value)\n\n\n\n    #####################\n    ## Common events\n\n\n    def system_exclusive(self, data):\n        print 'system_exclusive - data size: %s' % len(date)\n\n\n    def song_position_pointer(self, value):\n        print 'song_position_pointer: %s' % value\n\n\n    def song_select(self, songNumber):\n        print 'song_select: %s' % songNumber\n\n\n    def tuning_request(self):\n        print 'tuning_request'\n\n\n    def midi_time_code(self, msg_type, values):\n        print 'midi_time_code - msg_type: %s, values: %s' % (msg_type, values)\n\n\n\n    #########################\n    # header does not really belong here. But anyhoo!!!\n\n    def header(self, format=0, nTracks=1, division=96):\n        print 'format: %s, nTracks: %s, division: %s' % (format, nTracks, division)\n        print '----------------------------------'\n        print ''\n\n    def eof(self):\n        print 'End of file'\n\n\n    def start_of_track(self, n_track=0):\n        print 'Start - track #%s' % n_track\n\n\n    def end_of_track(self):\n        print 'End of track'\n        print ''\n\n\n\n    ###############\n    # sysex event\n\n    def sysex_event(self, data):\n        print 'sysex_event - datasize: %X' % len(data)\n\n\n    #####################\n    ## meta events\n\n    def meta_event(self, meta_type, data):\n        print 'undefined_meta_event:', meta_type, len(data)\n\n\n    def sequence_number(self, value):\n        print 'sequence_number', number\n\n\n    def text(self, text):\n        print 'text', text\n\n\n    def copyright(self, text):\n        print 'copyright', text\n\n\n    def sequence_name(self, text):\n        print 'sequence_name:', text\n\n\n    def instrument_name(self, text):\n        print 'instrument_name:', text\n\n\n    def lyric(self, text):\n        print 'lyric', text\n\n\n    def marker(self, text):\n        print 'marker', text\n\n\n    def cuepoint(self, text):\n        print 'cuepoint', text\n\n\n    def midi_ch_prefix(self, channel):\n        print 'midi_ch_prefix', channel\n\n\n    def midi_port(self, value):\n        print 'midi_port:', value\n\n\n    def tempo(self, value):\n        print 'tempo:', value\n\n\n    def smtp_offset(self, hour, minute, second, frame, framePart):\n        print 'smtp_offset', hour, minute, second, frame, framePart\n\n\n    def time_signature(self, nn, dd, cc, bb):\n        print 'time_signature:', nn, dd, cc, bb\n\n\n    def key_signature(self, sf, mi):\n        print 'key_signature', sf, mi\n\n\n    def sequencer_specific(self, data):\n        print 'sequencer_specific', len(data)\n\n\n\nif __name__ == '__main__':\n\n    # get data\n    test_file = 'test/midifiles/minimal.mid'\n    f = open(test_file, 'rb')\n    \n    # do parsing\n    from MidiInFile import MidiInFile\n    midiIn = MidiInFile(MidiToText(), f)\n    midiIn.read()\n    f.close()\n"
  },
  {
    "path": "midi/RawInstreamFile.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n# standard library imports\nfrom types import StringType\nfrom struct import unpack\n\n# custom import\nfrom DataTypeConverters import readBew, readVar, varLen\n\n\nclass RawInstreamFile:\n    \n    \"\"\"\n    \n    It parses and reads data from an input file. It takes care of big \n    endianess, and keeps track of the cursor position. The midi parser \n    only reads from this object. Never directly from the file.\n    \n    \"\"\"\n    \n    def __init__(self, infile=''):\n        \"\"\" \n        If 'file' is a string we assume it is a path and read from \n        that file.\n        If it is a file descriptor we read from the file, but we don't \n        close it.\n        Midi files are usually pretty small, so it should be safe to \n        copy them into memory.\n        \"\"\"\n        if infile:\n            if isinstance(infile, StringType):\n                infile = open(infile, 'rb')\n                self.data = infile.read()\n                infile.close()\n            else:\n                # don't close the f\n                self.data = infile.read()\n        else:\n            self.data = ''\n        # start at beginning ;-)\n        self.cursor = 0\n\n\n    # setting up data manually\n    \n    def setData(self, data=''):\n        \"Sets the data from a string.\"\n        self.data = data\n    \n    # cursor operations\n\n    def setCursor(self, position=0):\n        \"Sets the absolute position if the cursor\"\n        self.cursor = position\n\n\n    def getCursor(self):\n        \"Returns the value of the cursor\"\n        return self.cursor\n        \n        \n    def moveCursor(self, relative_position=0):\n        \"Moves the cursor to a new relative position\"\n        self.cursor += relative_position\n\n    # native data reading functions\n        \n    def nextSlice(self, length, move_cursor=1):\n        \"Reads the next text slice from the raw data, with length\"\n        c = self.cursor\n        slc = self.data[c:c+length]\n        if move_cursor:\n            self.moveCursor(length)\n        return slc\n        \n        \n    def readBew(self, n_bytes=1, move_cursor=1):\n        \"\"\"\n        Reads n bytes of date from the current cursor position.\n        Moves cursor if move_cursor is true\n        \"\"\"\n        return readBew(self.nextSlice(n_bytes, move_cursor))\n\n\n    def readVarLen(self):\n        \"\"\"\n        Reads a variable length value from the current cursor position.\n        Moves cursor if move_cursor is true\n        \"\"\"\n        MAX_VARLEN = 4 # Max value varlen can be\n        var = readVar(self.nextSlice(MAX_VARLEN, 0))\n        # only move cursor the actual bytes in varlen\n        self.moveCursor(varLen(var))\n        return var\n\n\n\nif __name__ == '__main__':\n\n    test_file = 'test/midifiles/minimal.mid'\n    fis = RawInstreamFile(test_file)\n    print fis.nextSlice(len(fis.data))\n\n    test_file = 'test/midifiles/cubase-minimal.mid'\n    cubase_minimal = open(test_file, 'rb')\n    fis2 = RawInstreamFile(cubase_minimal)\n    print fis2.nextSlice(len(fis2.data))\n    cubase_minimal.close()\n"
  },
  {
    "path": "midi/RawOutstreamFile.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n# standard library imports\nimport sys\nfrom types import StringType\nfrom struct import unpack\nfrom cStringIO import StringIO\n\n# custom import\nfrom DataTypeConverters import writeBew, writeVar, fromBytes\n\nclass RawOutstreamFile:\n    \n    \"\"\"\n    \n    Writes a midi file to disk.\n    \n    \"\"\"\n\n    def __init__(self, outfile=''):\n        self.buffer = StringIO()\n        self.outfile = outfile\n\n\n    # native data reading functions\n\n\n    def writeSlice(self, str_slice):\n        \"Writes the next text slice to the raw data\"\n        self.buffer.write(str_slice)\n        \n        \n    def writeBew(self, value, length=1):\n        \"Writes a value to the file as big endian word\"\n        self.writeSlice(writeBew(value, length))\n\n\n    def writeVarLen(self, value):\n        \"Writes a variable length word to the file\"\n        var = self.writeSlice(writeVar(value))\n\n\n    def write(self):\n        \"Writes to disc\"\n        if self.outfile:\n            if isinstance(self.outfile, StringType):\n                outfile = open(self.outfile, 'wb')\n                outfile.write(self.getvalue())\n                outfile.close()\n            else:\n                self.outfile.write(self.getvalue())\n        else:\n            sys.stdout.write(self.getvalue())\n                \n    def getvalue(self):\n        return self.buffer.getvalue()\n\n\nif __name__ == '__main__':\n\n    out_file = 'test/midifiles/midiout.mid'\n    out_file = ''\n    rawOut = RawOutstreamFile(out_file)\n    rawOut.writeSlice('MThd')\n    rawOut.writeBew(6, 4)\n    rawOut.writeBew(1, 2)\n    rawOut.writeBew(2, 2)\n    rawOut.writeBew(15360, 2)\n    rawOut.write()\n"
  },
  {
    "path": "midi/__init__.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n#import MidiOutStream\n#import MidiInStream\n#import MidiInFile\n#import MidiToText"
  },
  {
    "path": "midi/changes.txt",
    "content": "------------------------------------------------------------------------\nr409 | maxm | 2006-01-05 16:37:29 +0100 (to, 05 jan 2006) | 1 line\n\nMade RawOutstreamFile.py write to std out if no outfile is given.\n------------------------------------------------------------------------\nr403 | maxm | 2006-01-05 13:34:11 +0100 (to, 05 jan 2006) | 1 line\n\n\n------------------------------------------------------------------------\nr402 | maxm | 2006-01-05 13:33:56 +0100 (to, 05 jan 2006) | 1 line\n\n- Fixed minor bugs, added coding headers\n------------------------------------------------------------------------\nr401 | maxm | 2006-01-01 23:09:17 +0100 (s_, 01 jan 2006) | 1 line\n\nFixed sysex dispathcer bug.\n------------------------------------------------------------------------\nr268 | maxm | 2005-02-04 12:26:59 +0100 (fr, 04 feb 2005) | 1 line\n\n\n------------------------------------------------------------------------\nr128 | maxm | 2004-12-18 14:05:27 +0100 (l_, 18 dec 2004) | 1 line\n\nFixed bug when using relative time\n------------------------------------------------------------------------\nr15 | maxm | 2004-03-09 15:01:41 +0100 (ti, 09 mar 2004) | 1 line\n\nmade a copy to meta folder\n------------------------------------------------------------------------\nr13 | maxm | 2004-03-09 09:17:23 +0100 (ti, 09 mar 2004) | 1 line\n\nDeleted .pyc files\n------------------------------------------------------------------------\nr12 | maxm | 2004-03-09 09:15:54 +0100 (ti, 09 mar 2004) | 1 line\n\nRemoved file/folder\n------------------------------------------------------------------------\nr3 | maxm | 2004-03-08 23:16:25 +0100 (ma, 08 mar 2004) | 1 line\n\nAdde midi\n------------------------------------------------------------------------\nr1 | maxm | 2004-03-08 22:49:23 +0100 (ma, 08 mar 2004) | 1 line\n\nInitial Import\n------------------------------------------------------------------------\n"
  },
  {
    "path": "midi/constants.py",
    "content": "# -*- coding: ISO-8859-1 -*-\n\n###################################################\n## Definitions of the different midi events\n\n\n\n###################################################\n## Midi channel events (The most usual events)\n## also called \"Channel Voice Messages\"\n\nNOTE_OFF = 0x80\n# 1000cccc 0nnnnnnn 0vvvvvvv (channel, note, velocity)\n\nNOTE_ON = 0x90\n# 1001cccc 0nnnnnnn 0vvvvvvv (channel, note, velocity)\n\nAFTERTOUCH = 0xA0\n# 1010cccc 0nnnnnnn 0vvvvvvv (channel, note, velocity)\n\nCONTINUOUS_CONTROLLER = 0xB0 # see Channel Mode Messages!!!\n# 1011cccc 0ccccccc 0vvvvvvv (channel, controller, value)\n\nPATCH_CHANGE = 0xC0\n# 1100cccc 0ppppppp (channel, program)\n\nCHANNEL_PRESSURE = 0xD0\n# 1101cccc 0ppppppp (channel, pressure)\n\nPITCH_BEND = 0xE0\n# 1110cccc 0vvvvvvv 0wwwwwww (channel, value-lo, value-hi)\n\n\n###################################################\n##  Channel Mode Messages (Continuous Controller)\n##  They share a status byte.\n##  The controller makes the difference here\n\n# High resolution continuous controllers (MSB)\n\nBANK_SELECT = 0x00\nMODULATION_WHEEL = 0x01\nBREATH_CONTROLLER = 0x02\nFOOT_CONTROLLER = 0x04\nPORTAMENTO_TIME = 0x05\nDATA_ENTRY = 0x06\nCHANNEL_VOLUME = 0x07\nBALANCE = 0x08\nPAN = 0x0A\nEXPRESSION_CONTROLLER = 0x0B\nEFFECT_CONTROL_1 = 0x0C\nEFFECT_CONTROL_2 = 0x0D\nGEN_PURPOSE_CONTROLLER_1 = 0x10\nGEN_PURPOSE_CONTROLLER_2 = 0x11\nGEN_PURPOSE_CONTROLLER_3 = 0x12\nGEN_PURPOSE_CONTROLLER_4 = 0x13\n\n# High resolution continuous controllers (LSB)\n\nBANK_SELECT = 0x20\nMODULATION_WHEEL = 0x21\nBREATH_CONTROLLER = 0x22\nFOOT_CONTROLLER = 0x24\nPORTAMENTO_TIME = 0x25\nDATA_ENTRY = 0x26\nCHANNEL_VOLUME = 0x27\nBALANCE = 0x28\nPAN = 0x2A\nEXPRESSION_CONTROLLER = 0x2B\nEFFECT_CONTROL_1 = 0x2C\nEFFECT_CONTROL_2 = 0x2D\nGENERAL_PURPOSE_CONTROLLER_1 = 0x30\nGENERAL_PURPOSE_CONTROLLER_2 = 0x31\nGENERAL_PURPOSE_CONTROLLER_3 = 0x32\nGENERAL_PURPOSE_CONTROLLER_4 = 0x33\n\n# Switches\n\nSUSTAIN_ONOFF = 0x40\nPORTAMENTO_ONOFF = 0x41\nSOSTENUTO_ONOFF = 0x42\nSOFT_PEDAL_ONOFF = 0x43\nLEGATO_ONOFF = 0x44\nHOLD_2_ONOFF = 0x45\n\n# Low resolution continuous controllers\n\nSOUND_CONTROLLER_1 = 0x46                  # (TG: Sound Variation;   FX: Exciter On/Off)\nSOUND_CONTROLLER_2 = 0x47                  # (TG: Harmonic Content;   FX: Compressor On/Off)\nSOUND_CONTROLLER_3 = 0x48                  # (TG: Release Time;   FX: Distortion On/Off)\nSOUND_CONTROLLER_4 = 0x49                  # (TG: Attack Time;   FX: EQ On/Off)\nSOUND_CONTROLLER_5 = 0x4A                  # (TG: Brightness;   FX: Expander On/Off)75\tSOUND_CONTROLLER_6   (TG: Undefined;   FX: Reverb OnOff)\nSOUND_CONTROLLER_7 = 0x4C                  # (TG: Undefined;   FX: Delay OnOff)\nSOUND_CONTROLLER_8 = 0x4D                  # (TG: Undefined;   FX: Pitch Transpose OnOff)\nSOUND_CONTROLLER_9 = 0x4E                  # (TG: Undefined;   FX: Flange/Chorus OnOff)\nSOUND_CONTROLLER_10 = 0x4F                 # (TG: Undefined;   FX: Special Effects OnOff)\nGENERAL_PURPOSE_CONTROLLER_5 = 0x50\nGENERAL_PURPOSE_CONTROLLER_6 = 0x51\nGENERAL_PURPOSE_CONTROLLER_7 = 0x52\nGENERAL_PURPOSE_CONTROLLER_8 = 0x53\nPORTAMENTO_CONTROL = 0x54                  # (PTC)   (0vvvvvvv is the source Note number)   (Detail)\nEFFECTS_1 = 0x5B                           # (Ext. Effects Depth)\nEFFECTS_2 = 0x5C                           # (Tremelo Depth)\nEFFECTS_3 = 0x5D                           # (Chorus Depth)\nEFFECTS_4 = 0x5E                           # (Celeste Depth)\nEFFECTS_5 = 0x5F                           # (Phaser Depth)\nDATA_INCREMENT = 0x60                      # (0vvvvvvv is n/a; use 0)\nDATA_DECREMENT = 0x61                      # (0vvvvvvv is n/a; use 0)\nNON_REGISTERED_PARAMETER_NUMBER = 0x62     # (LSB)\nNON_REGISTERED_PARAMETER_NUMBER = 0x63     # (MSB)\nREGISTERED_PARAMETER_NUMBER = 0x64         # (LSB)\nREGISTERED_PARAMETER_NUMBER = 0x65         # (MSB)\n\n# Channel Mode messages - (Detail)\n\nALL_SOUND_OFF = 0x78\nRESET_ALL_CONTROLLERS = 0x79\nLOCAL_CONTROL_ONOFF = 0x7A\nALL_NOTES_OFF = 0x7B\nOMNI_MODE_OFF = 0x7C          # (also causes ANO)\nOMNI_MODE_ON = 0x7D           # (also causes ANO)\nMONO_MODE_ON = 0x7E           # (Poly Off; also causes ANO)\nPOLY_MODE_ON = 0x7F           # (Mono Off; also causes ANO)\n\n\n\n###################################################\n## System Common Messages, for all channels\n\nSYSTEM_EXCLUSIVE = 0xF0\n# 11110000 0iiiiiii 0ddddddd ... 11110111\n\nMTC = 0xF1 # MIDI Time Code Quarter Frame\n# 11110001\n\nSONG_POSITION_POINTER = 0xF2\n# 11110010 0vvvvvvv 0wwwwwww (lo-position, hi-position)\n\nSONG_SELECT = 0xF3\n# 11110011 0sssssss (songnumber)\n\n#UNDEFINED = 0xF4\n## 11110100\n\n#UNDEFINED = 0xF5\n## 11110101\n\nTUNING_REQUEST = 0xF6\n# 11110110\n\nEND_OFF_EXCLUSIVE = 0xF7 # terminator\n# 11110111 # End of system exclusive\n\n\n###################################################\n## Midifile meta-events\n\nSEQUENCE_NUMBER = 0x00      # 00 02 ss ss (seq-number)\nTEXT            = 0x01      # 01 len text...\nCOPYRIGHT       = 0x02      # 02 len text...\nSEQUENCE_NAME   = 0x03      # 03 len text...\nINSTRUMENT_NAME = 0x04      # 04 len text...\nLYRIC           = 0x05      # 05 len text...\nMARKER          = 0x06      # 06 len text...\nCUEPOINT        = 0x07      # 07 len text...\nPROGRAM_NAME    = 0x08      # 08 len text...\nDEVICE_NAME     = 0x09      # 09 len text...\n\nMIDI_CH_PREFIX  = 0x20      # MIDI channel prefix assignment (unofficial)\n\nMIDI_PORT       = 0x21      # 21 01 port, legacy stuff but still used\nEND_OF_TRACK    = 0x2F      # 2f 00\nTEMPO           = 0x51      # 51 03 tt tt tt (tempo in us/quarternote)\nSMTP_OFFSET     = 0x54      # 54 05 hh mm ss ff xx\nTIME_SIGNATURE  = 0x58      # 58 04 nn dd cc bb\nKEY_SIGNATURE   = 0x59      # ??? len text...\nSPECIFIC        = 0x7F      # Sequencer specific event\n\nFILE_HEADER     = 'MThd'\nTRACK_HEADER    = 'MTrk'\n\n###################################################\n## System Realtime messages\n## I don't supose these are to be found in midi files?!\n\nTIMING_CLOCK   = 0xF8\n# undefined    = 0xF9\nSONG_START     = 0xFA\nSONG_CONTINUE  = 0xFB\nSONG_STOP      = 0xFC\n# undefined    = 0xFD\nACTIVE_SENSING = 0xFE\nSYSTEM_RESET   = 0xFF\n\n\n###################################################\n## META EVENT, it is used only in midi files.\n## In transmitted data it means system reset!!!\n\nMETA_EVENT     = 0xFF\n# 11111111\n\n\n###################################################\n## Helper functions\n\ndef is_status(byte):\n    return (byte & 0x80) == 0x80 # 1000 0000\n\n\n"
  },
  {
    "path": "midi/example_mimimal_type0.py",
    "content": "from MidiOutFile import MidiOutFile\n\n\"\"\"\nThis is an example of the smallest possible type 0 midi file, where \nall the midi events are in the same track.\n\"\"\"\n\nout_file = 'midiout/minimal_type0.mid'\nmidi = MidiOutFile(out_file)\n\n# non optional midi framework\nmidi.header()\nmidi.start_of_track() \n\n\n# musical events\n\nmidi.update_time(0)\nmidi.note_on(channel=0, note=0x40)\n\nmidi.update_time(192)\nmidi.note_off(channel=0, note=0x40)\n\n\n# non optional midi framework\nmidi.update_time(0)\nmidi.end_of_track()\n\nmidi.eof()\n"
  },
  {
    "path": "midi/example_print_channel_0.py",
    "content": "from MidiOutStream import MidiOutStream\nfrom MidiInFile import MidiInFile\n\n\"\"\"\nThis prints all note on events on midi channel 0\n\"\"\"\n\n\nclass Transposer(MidiOutStream):\n    \n    \"Transposes all notes by 1 octave\"\n    \n    def note_on(self, channel=0, note=0x40, velocity=0x40):\n        if channel == 0:\n            print channel, note, velocity, self.rel_time()\n\n\nevent_handler = Transposer()\n\nin_file = 'midiout/minimal_type0.mid'\nmidi_in = MidiInFile(event_handler, in_file)\nmidi_in.read()\n\n"
  },
  {
    "path": "midi/example_print_events.py",
    "content": "from MidiToText import MidiToText\n\n\"\"\"\nThis is an example that uses the MidiToText eventhandler. When an \nevent is triggered on it, it prints the event to the console.\n\"\"\"\n\nmidi = MidiToText()\n\n# non optional midi framework\nmidi.header()\nmidi.start_of_track() \n\n\n# musical events\n\nmidi.update_time(0)\nmidi.note_on(channel=0, note=0x40)\n\nmidi.update_time(192)\nmidi.note_off(channel=0, note=0x40)\n\n\n# non optional midi framework\nmidi.update_time(0)\nmidi.end_of_track() # not optional!\n\nmidi.eof()\n"
  },
  {
    "path": "midi/example_print_file.py",
    "content": "\"\"\"\nThis is an example that uses the MidiToText eventhandler. When an \nevent is triggered on it, it prints the event to the console.\n\nIt gets the events from the MidiInFile.\n\nSo it prints all the events from the infile to the console. great for \ndebugging :-s\n\"\"\"\n\n\n# get data\ntest_file = 'test/midifiles/minimal-cubase-type0.mid'\n\n# do parsing\nfrom MidiInFile import MidiInFile\nfrom MidiToText import MidiToText # the event handler\nmidiIn = MidiInFile(MidiToText(), test_file)\nmidiIn.read()\n"
  },
  {
    "path": "midi/example_transpose_octave.py",
    "content": "from MidiOutFile import MidiOutFile\nfrom MidiInFile import MidiInFile\n\n\"\"\"\nThis is an example of the smallest possible type 0 midi file, where \nall the midi events are in the same track.\n\"\"\"\n\n\nclass Transposer(MidiOutFile):\n    \n    \"Transposes all notes by 1 octave\"\n    \n    def _transp(self, ch, note):\n        if ch != 9: # not the drums!\n            note += 12\n            if note > 127:\n                note = 127\n        return note\n\n\n    def note_on(self, channel=0, note=0x40, velocity=0x40):\n        note = self._transp(channel, note)\n        MidiOutFile.note_on(self, channel, note, velocity)\n        \n        \n    def note_off(self, channel=0, note=0x40, velocity=0x40):\n        note = self._transp(channel, note)\n        MidiOutFile.note_off(self, channel, note, velocity)\n\n\nout_file = 'midiout/transposed.mid'\nmidi_out = Transposer(out_file)\n\n#in_file = 'midiout/minimal_type0.mid'\n#in_file = 'test/midifiles/Lola.mid'\nin_file = 'test/midifiles/tennessee_waltz.mid'\nmidi_in = MidiInFile(midi_out, in_file)\nmidi_in.read()\n\n"
  },
  {
    "path": "midi/files.txt",
    "content": "Midi file name\tBWV\tK\tB\tEMB\tR\n000106b_.mid\t1.6\t378\t\t375\t\n000206b_.mid\t2.6\t7\t262\t5\t262\n000306b_.mid\t3.6\t8\t156\t8\t156\n000306bv.mid\t3.6v\t\t307\t\t\n000306bv.mid\t3.6\t\t\t\t308\n000408b_.mid\t4.8\t41\t\t36\t184\n000408bv.mid\t4.8v\t\t184\t\t\n000507b_.mid\t5.7\t28\t303\t25\t304\n000606b_.mid\t6.6\t79\t72\t80\t72\n000707b_.mid\t7.7\t44\t\t41\t\n000806b_.mid\t8.6\t227\t43\t224\t43\n000907b_.mid\t9.7\t87\t289\t87\t290\n001007b_.mid\t10.7\t122\t357\t238\t358\n001106b_.mid\t11.6\t82\t342\t81\t343\n001207b_.mid\t12.7\t340\t\t338\t\n001306b_.mid\t13.6\t295\t103\t289\t103\n001405b_.mid\t14.5\t330\t182\t330\t182\n001606b_.mid\t16.6\t125\t99\t123\t99\n001707b_.mid\t17.7\t271\t6\t269\t7\n001805b_.mid\t18.5\t73\t100\t74\t100\n001805ba.mid\t18a.5\t\t126\t\t126\n001907b_.mid\t19.7\t99\t297\t99\t298\n001907ch.mid\t19.7ch\t\t297\t\t\n002007b_.mid\t20.7\t276\t26\t275\t26\n002011b_.mid\t20.11\t276\t26\t275\t26\n002406b_.mid\t24.6\t\t336\t\t\n002406bs.mid\t24.6s\t\t336\t\t337\n002506b_.mid\t25.6\t101\t\t100\t254\n002506b_.mid\t25.6\t101\t\t100\t282\n002506v1.mid\t25.6v1\t\t254\t\t\n002506v2.mid\t25.6v2\t\t282\t\t\n002606b_.mid\t26.6\t11\t48\t11\t48\n002706b_.mid\t27.6\t350\t150\t\t150\n002806b_.mid\t28.6\t124\t88\t124\t88\n002806b_.mid\t28.6\t124\t23\t124\t23\n002908b_.mid\t29.8\t272\t116\t270\t116\n002908ch.mid\t29.8ch\t\t116\t\t\n003006b_.mid\t30.6\t103\t\t101\t76\n003006bv.mid\t30.6v\t\t76\t\t\n003109b_.mid\t31.9\t357\t\t353\t\n003109b_.mid\t31.9ch\t\t\t\t\n003206b_.mid\t32.6\t102\t29\t102\t29\n003306b_.mid\t33.6\t16\t13\t17\t13\n003604b2.mid\t36(2).4\t377\t85\t376\t305\n003604b2.mid\t36(2).4\t377\t85\t376\t86\n003604b2.mid\t36(2).4\t377\t195\t376\t195\n003608b2.mid\t36(2).8\t264\t28\t264\t28\n003706b_.mid\t37.6\t178\t340\t174\t341\n003806b_.mid\t38.6\t31\t10\t31\t10\n003907b_.mid\t39.7\t104\t\t103\t67\n003907bv.mid\t39.7v\t\t67\t\t\n004003b_.mid\t40.3\t379\t320\t379\t321\n004006b_.mid\t40.6\t305\t142\t305\t142\n004008b_.mid\t40.8\t105\t8\t106\t8\n004106b_.mid\t41.6\t204\t\t209\t\n004106bs.mid\t41.6s\t\t11\t\t11\n004207b_.mid\t42.7\t322\t259\t321\t259\n004207b_.mid\t42.7\t322\t91\t321\t91\n004207b_.mid\t42.7\t322\t91\t321\t91\n004207b_.mid\t42.7\t322\t259\t321\t259\n004311b_.mid\t43.11\t81\t102\t82\t102\n004407b_.mid\t44.7\t296\t354\t290\t355\n004507b_.mid\t45.7\t278\t84\t278\t85\n004606bs.mid\t46.6s\t\t81\t\t82\n004705b_.mid\t47.5\t333\t94\t331\t94\n004803b_.mid\t48.3\t4\t279\t3\t279\n004807b_.mid\t48.7\t144\t266\t139\t266\n005206b_.mid\t52.6\t212\t\t185\t\n005505b_.mid\t55.5\t362\t95\t368\t95\n005605b_.mid\t56.5\t72\t86\t72\t87\n005708b_.mid\t57.8\t231\t90\t227\t90\n005903b_.mid\t59.3\t220\t\t218\t\n006005b_.mid\t60.5\t91\t216\t92\t216\n006206b_.mid\t62.6\t265\t\t265\t\n006206bv.mid\t62.6v\t\t170\t\t170\n006402b_.mid\t64.2\t108\t160\t108\t160\n006402bv.mid\t64.2v\t\t\t109\t\n006404b_.mid\t64.4\t280\t255\t279\t255\n006404b_.mid\t64.4v\t281\t\t280\t\n006408b_.mid\t64.8\t200\t138\t201\t138\n006502b_.mid\t65.2\t302\t12\t302\t12\n006507b_.mid\t65.7\t346\t41\t343\t41\n006606b_.mid\t66.6\t37\t\t34\t\n006704b_.mid\t67.4\t83\t\t84\t\n006707b_.mid\t67.7\t68\t42\t69\t42\n006906b_.mid\t69.6\t97\t332\t96\t333\n006906ba.mid\t69a.6\t\t\t339\t293\n006906bav.mid\t69a.6v\t\t292\t\t\n007007b_.mid\t70.7\t98\t\t104\t\n007011b_.mid\t70.11\t243\t347\t241\t348\n007011ch.mid\t70.11ch\t\t347\t\t\n007206b_.mid\t72.6\t344\t\t344\t\n007305b_.mid\t73.5\t328\t\t325\t\n007305bv.mid\t73.5v\t\t191\t\t191\n007408b_.mid\t74.8\t223\t369\t220\t370\n007706b_.mid\t77.6\t6\t253\t6\t253\n007807b_.mid\t78.7\t188\t296\t190\t297\n007903b_.mid\t79.3\t259\t\t257\t\n007906b_.mid\t79.6\t267\t\t266\t\n008008b_.mid\t80.8\t76\t273\t75\t273\n008107b_.mid\t81.7\t197\t323\t202\t324\n008305b_.mid\t83.5\t250\t324\t249\t325\n008405b_.mid\t84.5\t373\t112\t361\t112\n008506b_.mid\t85.6\t216\t122\t189\t122\n008606b_.mid\t86.6\t86\t4\t88\t4\n008707b_.mid\t87.7\t201\t96\t203\t96\n008807b_.mid\t88.7\t368\t104\t362\t104\n008906b_.mid\t89.6\t26\t281\t26\t281\n009005b_.mid\t90.5\t319\t267\t316\t267\n009106b_.mid\t91.6\t109\t53\t110\t\n009106ch.mid\t91.6\t109\t53\t110\t51\n009209b_.mid\t92.9\t347\t\t345\t\n009307b_.mid\t93.7\t369\t\t363\t\n009408b_.mid\t94.8\t281\t290\t280\t291\n009507b_.mid\t95.7\t356\t\t354\t\n009606b_.mid\t96.6\t128\t302\t126\t303\n009709b_.mid\t97.9\t297\t\t291\t\n009709ch.mid\t97.9ch\t\t\t\t\n009906b_.mid\t99.6\t341\t\t340\t\n010107b_.mid\t101.7\t318\t\t317\t292\n010107bv.mid\t101.7v\t\t291\t\t\n010207b_.mid\t102.7\t320\t110\t318\t110\n010306b_.mid\t103.6\t348\t120\t346\t120\n010306b_.mid\t103.6\t348\t348\t346\t349\n010406b_.mid\t104.6\t13\t325\t14\t326\n010406bv.mid\t104.6v\t\t125\t\t\n010406bv.mid\t104.6v\t\t125\t\t125\n010506b_.mid\t105.6\t\t\t191\t\n010806b_.mid\t108.6\t224\t46\t221\t45\n011007b_.mid\t110.7\t380\t57\t380\t55\n011106b_.mid\t111.6\t345\t\t347\t\n011205b_.mid\t112.5\t14\t312\t15\t313\n011205b_.mid\t112.5\t14\t352\t15\t353\n011308b_.mid\t113.8\t142\t293\t140\t294\n011407b_.mid\t114.7\t386\t300\t383\t301\n011506b_.mid\t115.6\t312\t\t313\t\n011506bv.mid\t115.6v\t\t38\t\t38\n011606b_.mid\t116.6\t69\t\t70\t\n011704b_.mid\t117.4\t90\t\t89\t\n011704v1.mid\t117.4v1\t\t248\t\t248\n011704v2.mid\t117.4v2\t\t353\t\t354\n011709b_.mid\t117.9\t90\t\t89\t\n011909b_.mid\t119.9\t134\t\t131\t\n012006b_.mid\t120.6\t135\t\t132\t\n012008ba.mid\t120a.8\t230\t\t228\t\n012106b_.mid\t121.6\t42\t55\t46\t56\n012206b_.mid\t122.6\t57\t52\t58\t53\n012206b_.mid\t122.6\t57\t178\t58\t178\n012306b_.mid\t123.6\t229\t194\t225\t194\n012406b_.mid\t124.6\t246\t\t242\t\n012506b_.mid\t125.6\t251\t\t250\t\n012606b_.mid\t126.6\t321\t\t322\t\n012606b_.mid\t126.6\t321\t\t322\t\n012606bv.mid\t126.6v\t\t215\t\t\n012606bv.mid\t126.6v\t\t215\t\t\n012705b_.mid\t127.5\t147\t283.1\t144\t284\n012805b_.mid\t128.5\t279\t\t281\t\n013006b_.mid\t130.6\t131\t\t128\t\n013306b_.mid\t133.6\t181\t61\t179\t60\n013506b_.mid\t135.6\t156\t\t154\t\n013606b_.mid\t136.6\t27\t330\t27\t331\n013705b_.mid\t137.5\t230\t\t228\t\n013705ch.mid\t137.5ch\t\t\t\t\n013906b_.mid\t139.6\t238\t\t234\t\n014007b_.mid\t140.7\t329\t179\t329\t179\n014403b_.mid\t144.3\t338\t64\t341\t65\n014406b_.mid\t144.6\t343\t265\t348\t265\n014500ba.mid\t145a\t209\t337\t214\t338\n014505b_.mid\t145.5\t84\t\t85\t17\n014505bv.mid\t145.5v\t\t17\t\t\n014608b_.mid\t146.8\t360\t\t369\t\n014806b_.mid\t148.6\t29\t\t28\t\n014806bv.mid\t148.6v\t\t25\t\t25\n014907b_.mid\t149.7\t155\t\t150\t\n014907ch.mid\t149.7\t155\t\t150\t\n015105b_.mid\t151.5\t235\t54\t230\t54\n015301b_.mid\t153.1\t5\t3\t7\t3\n015305b_.mid\t153.5\t160\t21\t155\t21\n015309b_.mid\t153.9\t9\t217\t9\t217\n015403b_.mid\t154.3\t365\t233\t370\t233\n015408b_.mid\t154.8\t244\t152\t243\t152\n015505b_.mid\t155.5\t88\t334\t90\t335\n015606b_.mid\t156.6\t150\t316\t148\t317\n015705b_.mid\t157.5\t245\t\t244\t\n015804b_.mid\t158.4\t40\t261\t37\t261\n015804bv.mid\t158.4v\t40\t\t38\t\n015905b_.mid\t159.5\t194\t59\t198\t61\n016106b_.mid\t161.6\t161\t270\t156\t270\n016206b_.mid\t162.6\t18\t\t12\t\n016406b_.mid\t164.6\t127\t101\t127\t101\n016506b_.mid\t165.6\t266\t\t267\t\n016606b_.mid\t166.6\t372\t204\t364\t204\n016806b_.mid\t168.6\t143\t92\t141\t92\n016907b_.mid\t169.7\t256\t97\t254\t97\n017106b_.mid\t171.6\t204\t\t209\t\n017206b_.mid\t172.6\t376\t322\t377\t323\n017206ch.mid\t172.6ch\t\t322\t\t\n017206vn.mid\t172.6vln\t\t322\t\t\n017405b_.mid\t174.5\t153\t56\t151\t58\n017507b_.mid\t175.7\t220\t\t218\t\n017507ch.mid\t175.7ch\t\t\t\t\n017606b_.mid\t176.6\t45\t119\t42\t119\n017705b_.mid\t177.5\t183\t\t181\t\n017705bv.mid\t177.5v\t\t71\t\t\n017807b_.mid\t178.7\t384\t\t384\t\n017906b_.mid\t179.6\t371\t338\t365\t339\n018007b_.mid\t180.7\t304\t\t304\t\n018007bv.mid\t180.7v\t\t22\t\t22\n018305b_.mid\t183.5\t126\t123\t125\t123\n018405b_.mid\t184.5\t283\t\t283\t\n018405bv.mid\t184.5v\t\t14\t\t14\n018506b_.mid\t185.6\t184\t\t182\t\n018707b_.mid\t187.7\t308\t109\t309\t109\n018806b_.mid\t188.6\t25\t\t29\t\n019007b_.mid\t190.7\t205\t326\t210\t327\n019007ch.mid\t190.7ch\t\t326\t\t\n019406b_.mid\t194.6\t100\t256\t105\t256\n019406bv.mid\t194.6v\t\t63\t\t64\n019412b_.mid\t194.12\t268\t93\t268\t93\n019412b_.mid\t194.12\t268\t257\t268\t257\n019506b_.mid\t195.6\t236\t\t231\t\n019705b_.mid\t197.5\t255\t83\t255\t84\n019707ba.mid\t197a.7\t\t311\t\t\n019710b_.mid\t197.10\t370\t66\t366\t62\n022602b_.mid\t226.2\t221\t\t219\t69\n022602bv.mid\t226.2v\t\t69\t\t\n022701b_.mid\t227.1\t196\t\t204\t263\n022703b_.mid\t227.3\t198\t\t205\t\n022707b_.mid\t227.7\t199\t283\t206\t283\n022711b_.mid\t227.11\t196\t263\t204\t263\n022902b_.mid\t229.2\t222\t\t\t\n024403b_.mid\t244.3\t166\t78\t164\t78\n024410b_.mid\t244.10\t294\t117\t292\t117\n024415b_.mid\t244.15\t163\t\t158\t\n024415bv.mid\t244.15v\t\t98\t\t98\n024417b_.mid\t244.17\t\t\t\t\n024425b_.mid\t244.25\t342\t115\t349\t115\n024429bb.mid\t244b.29\t247\t\t245\t\n024432b_.mid\t244.32\t213\t118\t186\t118\n024437b_.mid\t244.37\t292\t50\t293\t50\n024440b_.mid\t244.40\t361\t121\t371\t121\n024444b_.mid\t244.44\t159\t87\t157\t80\n024446b_.mid\t244.46\t167\t105\t165\t105\n024454b_.mid\t244.54\t162\t74\t159\t74\n024462b_.mid\t244.62\t164\t\t160\t\n024462bv.mid\t244.62v\t\t89\t\t89\n024503b_.mid\t245.3\t168\t58\t167\t59\n024505b_.mid\t245.5\t317\t\t320\t\n024511b_.mid\t245.11\t293\t62\t294\t63\n024514b_.mid\t245.14\t192\t82\t200\t83\n024515b_.mid\t245.15\t49\t80\t49\t81\n024517b_.mid\t245.17\t169\t111\t166\t111\n024522b_.mid\t245.22\t239\t309\t235\t310\n024526b_.mid\t245.26\t315\t108\t314\t108\n024528b_.mid\t245.28\t193\t106\t199\t106\n024537b_.mid\t245.37\t50\t113\t50\t113\n024540b_.mid\t245.40\t154\t107\t152\t107\n024805b1.mid\t248(1).5\t165\t344\t161\t345\n024809b1.mid\t248(1).9\t\t\t323\t46\n024809bs.mid\t248(1).9s\t\t45\t\t\n024812b2.mid\t248(2).12\t80\t9\t83\t9\n024812b2.mid\t248(2).12\t80\t360\t83\t361\n024817b2.mid\t248(2).17\t323\t\t324\t\n024823bs.mid\t248(2).23s\t\t343\t\t344\n024828b3.mid\t248(3).28\t110\t\t111\t\n024833b3.mid\t248(3).33\t335\t139\t334\t139\n024835b3.mid\t248(3).35\t381\t359\t381\t360\n024842bs.mid\t248(4).42s\t\t367\t\t368\n024846b5.mid\t248(5).46\t214\t77\t187\t77\n024853b5.mid\t248(5).53\t114\t34\t116\t35\n024859b6.mid\t248(5).59\t263\t361\t261\t362\n024864bs.mid\t248(6).64s\t\t\t\t\n025000b_.mid\t250\t339\t346\t342\t347\n025100b_.mid\t251\t89\t328\t91\t329\n025200b_.mid\t252\t258\t329\t258\t330\n025300b_.mid\t253\t1\t177\t1\t177\n025400b_.mid\t254\t2\t186\t2\t186\n025500b_.mid\t255\t3\t40\t4\t40\n025600b_.mid\t256\t385\t31\t385\t31\n025700b_.mid\t257\t388\t284\t386\t285\n025800b_.mid\t258\t383\t335\t387\t336\n025900b_.mid\t259\t10\t39\t10\t39\n026000b_.mid\t260\t12\t249\t16\t249\n026100b_.mid\t261\t15\t358\t18\t359\n026200b_.mid\t262\t17\t153\t13\t153\n026300b_.mid\t263\t19\t128\t19\t128\n026400b_.mid\t264\t20\t159\t20\t159\n026500b_.mid\t265\t21\t180\t21\t180\n026600b_.mid\t266\t22\t208\t22\t208\n026700b_.mid\t267\t23\t5\t23\t5\n026700ba.mid\t267a\t23\t308\t23\t309\n026800b_.mid\t268\t24\t124\t24\t124\n026900b_.mid\t269\t30\t1\t30\t1\n027000b_.mid\t270\t157\t285\t162\t286\n027100b_.mid\t271\t158\t366\t163\t367\n027200b_.mid\t272\t32\t339\t32\t340\n027300b_.mid\t273\t33\t230\t33\t230\n027400b_.mid\t274\t34\t245\t44\t245\n027500b_.mid\t275\t35\t210\t45\t210\n027600b_.mid\t276\t36\t197\t35\t197\n027700b_.mid\t277\t38\t15\t39\t15\n027800b_.mid\t278\t39\t370\t40\t371\n027900b_.mid\t279\t40\t261\t37\t261\n028000b_.mid\t280\t43\t65\t43\t66\n028100b_.mid\t281\t46\t7\t47\t6\n028200b_.mid\t282\t47\t315\t48\t316\n028300b_.mid\t283\t48\t198\t51\t198\n028300b_.mid\t283\t48\t306\t51\t307\n028400b_.mid\t284\t51\t200\t52\t200\n028500b_.mid\t285\t52\t196\t53\t196\n028600b_.mid\t286\t53\t228\t55\t228\n028700b_.mid\t287\t54\t310\t54\t311\n028800b_.mid\t288\t55\t162\t56\t162\n028900b_.mid\t289\t56\t313\t57\t314\n029000b_.mid\t290\t58\t224\t59\t224\n029100b_.mid\t291\t59\t75\t60\t75\n029200b_.mid\t292\t60\t239\t61\t239\n029300b_.mid\t293\t61\t154\t62\t154\n029400b_.mid\t294\t62\t158\t63\t158\n029500b_.mid\t295\t63\t207\t64\t207\n029600b_.mid\t296\t64\t231\t65\t231\n029700b_.mid\t297\t65\t232\t66\t232\n029800b_.mid\t298\t66\t127\t67\t127\n029900b_.mid\t299\t67\t209\t68\t209\n030000b_.mid\t300\t70\t164\t71\t167\n030100b_.mid\t301\t71\t137\t73\t134\n030200b_.mid\t302\t74\t20\t76\t20\n030300b_.mid\t303\t75\t250\t77\t250\n030400b_.mid\t304\t77\t280\t78\t280\n030500b_.mid\t305\t78\t33\t79\t34\n030600b_.mid\t306\t85\t176\t86\t176\n030700b_.mid\t307\t262\t260\t262\t260\n030800b_.mid\t308\t92\t27\t93\t27\n030900b_.mid\t309\t93\t166\t94\t166\n031000b_.mid\t310\t94\t238\t95\t238\n031100b_.mid\t311\t95\t16\t97\t16\n031200b_.mid\t312\t96\t351\t98\t352\n031300b_.mid\t313\t106\t163\t107\t163\n031400b_.mid\t314\t107\t287\t112\t288\n031500b_.mid\t315\t111\t271\t113\t271\n031600b_.mid\t316\t112\t225\t114\t225\n031700b_.mid\t317\t113\t134\t115\t135\n031800b_.mid\t318\t115\t18\t120\t18\n031900b_.mid\t319\t116\t181\t117\t181\n032000b_.mid\t320\t117\t234\t118\t234\n032100b_.mid\t321\t118\t192\t121\t192\n032200b_.mid\t322\t119\t70\t119\t70\n032300b_.mid\t323\t120\t319\t239\t320\n032400b_.mid\t324\t121\t130\t240\t130\n032500b_.mid\t325\t123\t235\t122\t235\n032500b_.mid\t325\t123\t318\t122\t319\n032600b_.mid\t326\t129\t167\t129\t164\n032700b_.mid\t327\t132\t333\t130\t334\n032800b_.mid\t328\t133\t205\t133\t205\n032900b_.mid\t329\t136\t212\t134\t212\n033000b_.mid\t330\t137\t35\t135\t33\n033100b_.mid\t331\t138\t286\t136\t287\n033200b_.mid\t332\t139\t136\t137\t136\n033300b_.mid\t333\t140\t226\t138\t226\n033400b_.mid\t334\t141\t73\t142\t73\n033500b_.mid\t335\t145\t236\t143\t295\n033500bv.mid\t335v\t\t294\t\t\n033600b_.mid\t336\t146\t189\t145\t189\n033700b_.mid\t337\t148\t190\t146\t190\n033800b_.mid\t338\t149\t221\t147\t221\n033900b_.mid\t339\t151\t144\t149\t318\n033900b_.mid\t339\t151\t144\t149\t144\n034000b_.mid\t340\t152\t277\t153\t277\n034100b_.mid\t341\t170\t168\t168\t168\n034200b_.mid\t342\t171\t79\t169\t79\n034300b_.mid\t343\t172\t301\t170\t302\n034300b_.mid\t343\t172\t199\t170\t199\n034400b_.mid\t344\t173\t155\t171\t155\n034500b_.mid\t345\t174\t251\t172\t251\n034600b_.mid\t346\t175\t223\t173\t223\n034700b_.mid\t347\t176\t2\t175\t2\n034800b_.mid\t348\t177\t272\t176\t272\n034900b_.mid\t349\t179\t188\t177\t188\n035000b_.mid\t350\t180\t229\t178\t229\n035100b_.mid\t351\t182\t19\t180\t19\n035200b_.mid\t352\t185\t37\t192\t37\n035300b_.mid\t353\t186\t269\t193\t269\n035400b_.mid\t354\t187\t368\t194\t369\n035500b_.mid\t355\t189\t169\t195\t169\n035600b_.mid\t356\t190\t243\t196\t243\n035700b_.mid\t357\t191\t244\t197\t244\n035800b_.mid\t358\t195\t355\t207\t356\n035900b_.mid\t359\t363\t364\t372\t365\n036000b_.mid\t360\t364\t349\t373\t350\n036100b_.mid\t361\t202\t264\t208\t264\n036200b_.mid\t362\t203\t252\t211\t252\n036300b_.mid\t363\t206\t30\t212\t30\n036400b_.mid\t364\t207\t174\t213\t174\n036500b_.mid\t365\t208\t175\t215\t175\n036600b_.mid\t366\t210\t161\t183\t161\n036700b_.mid\t367\t211\t140\t184\t140\n036800b_.mid\t368\t215\t143\t188\t143\n036900b_.mid\t369\t217\t129\t216\t129\n037000b_.mid\t370\t218\t187\t217\t187\n037100b_.mid\t371\t225\t132\t222\t132\n037200b_.mid\t372\t226\t218\t223\t218\n037300b_.mid\t373\t228\t131\t226\t131\n037300bv.mid\t373v\t\t327\t\t328\n037400b_.mid\t374\t232\t227\t229\t227\n037500b_.mid\t375\t233\t276\t232\t276\n037600b_.mid\t376\t234\t341\t233\t342\n037700b_.mid\t377\t237\t44\t236\t44\n037800b_.mid\t378\t240\t258\t237\t258\n037900b_.mid\t379\t241\t151\t247\t151\n038000b_.mid\t380\t242\t298\t246\t299\n038100b_.mid\t381\t248\t345\t248\t346\n038200b_.mid\t382\t249\t49\t251\t49\n038300b_.mid\t383\t252\t214\t252\t214\n038400b_.mid\t384\t253\t149\t253\t149\n038500b_.mid\t385\t254\t36\t256\t36\n038600b_.mid\t386\t257\t32\t259\t32\n038700b_.mid\t387\t260\t185\t260\t185\n038800b_.mid\t388\t261\t183\t263\t183\n038900b_.mid\t389\t269\t268\t271\t268\n039000b_.mid\t390\t270\t295\t272\t296\n039100b_.mid\t391\t273\t222\t273\t222\n039200b_.mid\t392\t298\t288\t295\t289\n039300b_.mid\t393\t289\t275\t296\t275\n039400b_.mid\t394\t290\t365\t297\t366\n039500b_.mid\t395\t291\t362\t298\t363\n039600b_.mid\t396\t274\t240\t274\t240\n039700b_.mid\t397\t275\t274\t276\t274\n039800b_.mid\t398\t277\t311\t282\t312\n039900b_.mid\t399\t282\t314\t277\t315\n040000b_.mid\t400\t284\t173\t284\t173\n040100b_.mid\t401\t285\t165\t285\t165\n040200b_.mid\t402\t286\t201\t286\t201\n040200b_.mid\t402\t286\t305\t286\t306\n040300b_.mid\t403\t287\t203\t287\t203\n040400b_.mid\t404\t288\t60\t288\t57\n040400bv.mid\t404v\t\t3\t\t\n040500b_.mid\t405\t299\t213\t299\t213\n040600b_.mid\t406\t300\t219\t300\t219\n040700b_.mid\t407\t301\t202\t301\t202\n040800b_.mid\t408\t303\t171\t303\t171\n040900b_.mid\t409\t306\t141\t307\t\n040900b_.mid\t409\t306\t141\t306\t\n040900bv.mid\t409v\t\t5a\t306\t141\n041000b_.mid\t410\t307\t172\t308\t172\n041100b_.mid\t411\t309\t246\t310\t246\n041200b_.mid\t412\t310\t206\t311\t206\n041300b_.mid\t413\t311\t220\t312\t220\n041400b_.mid\t414\t313\t148\t\t148\n041500b_.mid\t415\t314\t24\t315\t24\n041600b_.mid\t416\t316\t47\t319\t47\n041700b_.mid\t417\t324\t363\t326\t364\n041800b_.mid\t418\t325\t331\t327\t332\n041900b_.mid\t419\t326\t114\t328\t114\n042000b_.mid\t420\t331\t145\t332\t145\n042100b_.mid\t421\t332\t299\t333\t300\n042200b_.mid\t422\t334\t356\t335\t357\n042300b_.mid\t423\t336\t237\t336\t237\n042400b_.mid\t424\t337\t193\t337\t193\n042500b_.mid\t425\t349\t241\t350\t241\n042600b_.mid\t426\t351\t211\t351\t211\n042700b_.mid\t427\t352\t147\t352\t147\n042800b_.mid\t428\t353\t321\t355\t322\n042900b_.mid\t429\t354\t51\t356\t52\n043000b_.mid\t430\t355\t350\t357\t351\n043100b_.mid\t431\t358\t68\t358\t68\n043200b_.mid\t432\t359\t247\t359\t247\n043300b_.mid\t433\t366\t135\t360\t137\n043400b_.mid\t434\t367\t146\t367\t146\n043500b_.mid\t435\t374\t242\t374\t242\n043600b_.mid\t436\t375\t278\t378\t278\n043700b_.mid\t437\t382\t133\t382\t133\n043800b_.mid\t438\t389\t157\t388\t157\n"
  },
  {
    "path": "midi/license.txt",
    "content": "Modified Python MIDI package\nCopyright (C) 2013  Nicolas Boulanger-Lewandowski\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
  },
  {
    "path": "midi/readme",
    "content": "JSBChorales.net: ReadMe\rMargaret Greentree\r\r\rThis is a copy of the README found with the midi files of the chorales.\r\rHere is a set of midi files of chorales harmonized by J. S. Bach. These short works are used in church services and in the study of the practices of harmony.\r\rThe BWV catalog numbers were created in 1950 to standardize references to Bach's work. No longer need there be confusion about WHICH fugue in g minor is being talked about.\r\rThe file names or ID numbers in the database of this web site may be understood as follows:\r\r0000xxB_.mid\r0000 is the BWV #\rxx is the movement # within the BWV. These are from the NBA edition which are indicated in Wolfgang Schmieder's _Thematic Catalog of the Musical Work of Johann Sebastian Bach_, Breitkopf and Hartel, Wiesden, 1990.\rB means that the chorale is numbered in the BWV catalog, A in this spot would be the anhang #, C in this spot would be some other series of numbers if necessary.\r_ is a placeholder for some other information, eg. a first or second version, S for a short or abbreviated version\r\rFor example, for the chorale that closes BWV 42, the file name would be 004207b_.mid\rFor the chorale that closes the first part of BWV 36(2) would be 003604b2.mid\r\rSo, to interpret the file name: 024833b_.mid:\r\r\r0248  = BWV 248\r33 = Movement #33\rb  = BWV series\r_  = no other special info\r\r\rMost of these chorales may be found in the following two editions:\r\rBach, _371 Harmonized Chorales and 69 Chorale Melodies with Figured Bass_, ed. Albert Riemenschneider,  G. Schirmer, NY, 1941.\rThis is a reworking of the Bach-Kirnberger edition of 370 chorales. It contains many errors and some misleading notation.\r\rJohann Sebastian Bach, _389 Chorales_, Kalmus K06002, Belwin Inc, 15800 NW 48th Ave, Miami, FL 33014\rThis is a re-publication of the Richter edition of 389 chorales and is more reliable.\r\r\rA tab delimited text file which can be imported into a database or formatted in a word processor is also included. The fields in the file are:\r\rMIDI file #\r# of chorale in Kalmus\r# of chorale in Barenreiter\r# of chorale in Musica Budapest\r# of chorale in A. Riemenschneider\r\r\rIn chorales with repeats and an initial pick-up note, the repeat has been written out rather than written as a graphic repeat, and the pick-up has been included in the incomplete measure preceding the second playing of the repeat.\r\rIf possible, check the files against an original copy of the chorales, for accuracy and for preferences in writing odd measures.\r\r These files were created on a Macintosh using Coda's Finale.\r\rI would appreciate any messages, corrections or comments.\r\rIf you are going to use the chorales files, you can send me email.\rI always enjoy hearing what people are doing with the files. Thanks.\r\rThe files were made with Coda's Finale and Apple's QuickTime on an Apple Macintosh computer.\r"
  },
  {
    "path": "midi/readme.txt",
    "content": "\n-------------------------------------------------------------------------------------\nNicolas Boulanger-Lewandowski (Jan 2013)\nModified Python MIDI package (GPL)\n\nI added capabilities for piano-roll input/output of one-track MIDI files.\nThe original package can be found at: http://www.mxm.dk/products/public/pythonmidi/\n-------------------------------------------------------------------------------------\n\n\nThis is the documentation for the midi package\n==============================================\n\n\nThe modules follows the following naming convention:\n\n\nMidiIn<StreamType>.py\n---------------------\n\nThe MidiIn modules reads midi content for a specific type of stream. Ie. a file or a midi port. It then generates events and triggers them on a MidiOutStream.\n\n\nMidiOut<StreamType>.py\n----------------------\n\nThe MidiOut modules are event handlers, that reacts to events generated by a a Midi in module.\n\n\nMidiInBase.py\n---------------\n\nThe base class for input streams.\n\n\nMidiOutBase.py\n----------------\n\nThe base class for the output streams.\n\n\n\n\n\n\nInternal modules\n================\n\n\nDataTypeConverters.py\n---------------------\n\nA collection of functions that converts the special data types used in midi files to and from strings.\n\n\nconstants.py\n------------\n\nA collection of constants from the midi spec.\n\n"
  },
  {
    "path": "midi/utils.py",
    "content": "# Author: Nicolas Boulanger-Lewandowski\n# University of Montreal (2013)\n# RNN-RBM deep learning tutorial\n#\n# Implements midiread and midiwrite functions to read/write MIDI files to/from piano-rolls\n\n\nfrom MidiOutFile import MidiOutFile\nfrom MidiInFile import MidiInFile\nfrom MidiOutStream import MidiOutStream\n\nimport numpy\n\n\nclass midiread(MidiOutStream):\n  def __init__(self, filename, r=(21, 109), dt=0.2):\n    self.notes = []\n    self._tempo = 500000\n    self.beat = 0\n    self.time = 0.0\n\n    midi_in = MidiInFile(self, filename)\n    midi_in.read()\n    self.notes = [n for n in self.notes if n[2] is not None]  # purge incomplete notes\n\n    length = int(numpy.ceil(max(zip(*self.notes)[2]) / dt))  # create piano-roll\n    self.piano_roll = numpy.zeros((length, r[1]-r[0]))\n    for n in self.notes:\n      self.piano_roll[int(numpy.ceil(n[1]/dt)) : int(numpy.ceil(n[2]/dt)), n[0]-r[0]] = 1\n\n  def abs_time_in_seconds(self):\n    return self.time + self._tempo * (self.abs_time() - self.beat) * 1e-6 / self.div\n\n  def tempo(self, value):\n    self.time = self.abs_time_in_seconds()\n    self.beat = self.abs_time()\n    self._tempo = value\n  \n  def header(self, format=0, nTracks=1, division=96):\n    self.div = division\n\n  def note_on(self, channel=0, note=0x40, velocity=0x40):\n    self.notes.append([note, self.abs_time_in_seconds(), None])\n\n  def note_off(self, channel=0, note=0x40, velocity=0x40):\n    i = len(self.notes) - 1\n    while i >= 0 and self.notes[i][0] != note:\n      i -= 1\n    if i >= 0 and self.notes[i][2] is None:\n      self.notes[i][2] = self.abs_time_in_seconds()\n\n  def sysex_event(*args):\n    pass\n\n  def device_name(*args):\n    pass\n\n\ndef midiwrite(filename, piano_roll, r=(21, 109), dt=32, patch=0):\n  midi = MidiOutFile(filename)\n  midi.header(division=128)\n  midi.start_of_track() \n  midi.patch_change(channel=0, patch=patch)\n  t = 0\n  samples = [i.nonzero()[0] + r[0] for i in piano_roll]\n\n  for i in xrange(len(samples)):\n    for f in samples[i]:\n      if (i==0 \n          or f not in samples[i-1]\n          or i%4 == 0):\n        midi.update_time(t)\n        midi.note_on(channel=0, note=f, velocity=90)\n        t = 0\n    \n    t += int(dt)\n\n    for f in samples[i]:\n      if (i==len(samples)-1 \n          or f not in samples[i+1]\n          or i%4 == 3):\n        midi.update_time(t)\n        midi.note_off(channel=0, note=f, velocity=0)\n        t = 0\n      \n  midi.update_time(0)\n  midi.end_of_track()\n  midi.eof()\n\n\n"
  },
  {
    "path": "midi/version.txt",
    "content": "0.1.4"
  },
  {
    "path": "myparser.py",
    "content": "import xml.etree.ElementTree as ET\nimport math\nimport numpy as np\nimport subprocess\nfrom PIL import Image\nimport cPickle\nimport cStringIO\n\ndef read(filename, noteAdder, speed=1.0):\n    # speed controls how much to expand or contract the piano roll.\n    # So, speed=2 will make a quarter note in the xml equal to an\n    # eighth note on the piano roll.\n    tree = ET.parse(filename)\n    allNotes = tree.getroot()\n\n    beatCounter = {}    # Number of 16th notes.\n    lastCounter = 0     # Records the beat of the last thing we processed.\n    durPer16th = 1.0    # We read this value from the xml - this is just a default\n    beatsPerMeasure=4   # see above\n\n    for part in allNotes.iter('part'):\n        partId = part.get('id')\n        for measure in part.iter('measure'):\n            # SKIP implicit measures.\n            if measure.get('implicit') is not None:\n                continue\n\n            # Attributes are sandwiched in a stupid place - in any measure.\n            # Usually, the first measure will have attributes, but other measures\n            # may have more attributes, especially if the attributes change in\n            # the middle of a piece (different time signature, etc.).\n            attr = measure.find('attributes')\n            if attr is not None and attr.findtext('divisions') is not None:\n                durPer16th = float(attr.findtext('divisions')) / 4.0\n            if attr is not None and attr.findtext('time') is not None:\n                timeTree = attr.find('time')\n                beatsPerMeasure = int(timeTree.findtext('beats'))\n                print str(beatsPerMeasure) + ' beats per measure'\n\n            for note in measure.iter('note'):\n                # Get part.\n                voice = note.findtext('voice')\n                staff = note.findtext('staff')\n                if (partId, voice, staff) not in beatCounter:\n                    beatCounter[(partId, voice, staff)] = 0\n                # In a chord, every note after the first is marked with <chord />\n                # Chords need special treatment - you can't increment the beat\n                # when in the middle of a chord.\n                inChord = (note.find('chord') is not None)\n\n                try:\n                    dur = float(note.findtext('duration')) / durPer16th / speed\n                except TypeError:\n                    # Notes without duration are grace notes.  Skip them.\n                    continue\n                pitch = note.find('pitch')\n                if pitch is None:\n                    # rest.\n                    beatCounter[(partId, voice, staff)] += dur\n                    continue\n\n                # Read off the pitch\n                pitchNum = pitchGetter(\n                    pitch.findtext('step'),\n                    int(pitch.findtext('octave')),\n                    int(pitch.findtext('alter', default=0)),\n                )\n\n                if inChord:\n                    thisTime = lastCounter\n                else:\n                    thisTime = beatCounter[(partId, voice, staff)]\n                noteAdder(thisTime, pitchNum, dur)\n                # Deal with chord semantics.\n                if not inChord:\n                    lastCounter = beatCounter[(partId, voice, staff)]\n                    beatCounter[(partId, voice, staff)] += dur\n\n            # At the end of each measure, check for beat length consistency.\n            # Sometimes, music will put three beats in a 4/4 measure.  In that\n            # case, we crash.  You should go into the piece and fix the problem\n            # manually, before re-running.\n            if int(measure.get('number')) * 4 * beatsPerMeasure / speed \\\n                != beatCounter[(partId, voice, staff)]:\n                print filename\n                print beatCounter\n                print (partId, voice, staff)\n                print measure.get('number')\n                assert False\n\n# Counts the number of ticks in the music.  (Ticks = 16th notes, unless you\n# change that setting.)\nclass CountingNoteAdder(object):\n    def __init__(self):\n        self.maxLen = 0\n\n    def handle(self, time, pitch, dur):\n        self.maxLen = max(self.maxLen, time + dur)\n\nclass LegatoNoteAdder(object):\n    def __init__(self, maxLen, transpose=0):\n        self.maxLen = maxLen\n        self.mtx = np.zeros([88, maxLen])\n        self.transpose = transpose\n\n    def handle(self, time, pitch, dur):\n        if time != int(time):\n            return\n        rounded_dur = math.ceil(dur)\n        if time + rounded_dur >= self.maxLen:\n            return\n        self.mtx[pitch + self.transpose, time:time+rounded_dur] = 1\n\ndef pitchGetter(letter, octave, offset):\n    basePitch = {\n        'C': 0,\n        'D': 2,\n        'E': 4,\n        'F': 5,\n        'G': 7,\n        'A': 9,\n        'B': 11,\n    }\n    return octave * 12 + offset + basePitch[letter]\n\ndef fileToData(path, transpose=0, windowSize=4):\n    counter = CountingNoteAdder()\n    read(path, counter.handle)\n    maxLen = int(math.ceil(counter.maxLen / 16) * 16)\n    print maxLen\n    noteMaker = LegatoNoteAdder(maxLen, transpose)\n    read(path, noteMaker.handle)\n    outMtx = noteMaker.mtx\n\n    print \"Writing outputs\"\n    nWindows = maxLen / 16 - windowSize\n    finalData = np.zeros([nWindows, 88*16*windowSize])\n    for i in range(nWindows):\n        thisSlice = outMtx[:, i*16:i*16+windowSize*16]\n        finalData[i, :] = thisSlice.reshape([88*16*windowSize])\n        if i == 1:\n            outIm = Image.fromarray(thisSlice.astype('uint8')*255)\n            outIm.save('test.png')\n    return finalData\n\ndef fileToSerialData(path):\n    counter = CountingNoteAdder()\n    read(path, counter.handle)\n    maxLen = int(math.ceil(counter.maxLen / 64) * 64)\n    print maxLen\n    noteMaker = LegatoNoteAdder(maxLen, 0)\n    read(path, noteMaker.handle)\n    return noteMaker.mtx    \n\ndef main():\n    joplin = [\n        './joplin/searchlight.xml',\n        './joplin/strenous.xml',\n        './joplin/maple_leaf.xml',\n        './joplin/entertainer.xml',\n        './joplin/syncopations.xml',\n        './joplin/cleopha.xml',\n        './joplin/winners.xml',\n        './joplin/winners_2.xml',\n        './joplin/alabama.xml',\n    ]\n\n    total = None\n    for f in joplin:\n        # You can transpose all the music to multiple keys, to increase the amount\n        # of training data.  But, this makes training much slower and harder.  (Right\n        # now, everything is in C major.)\n        for transpose in range(1):\n            thisData = fileToData(f, transpose)\n            if total is None:\n                total = thisData\n            else:\n                total = np.concatenate((total, thisData), axis=0)\n    print \"Average notes per column:\"\n    print np.sum(total) / total.shape[0] / 64\n    cPickle.dump(total, open('test_data.pickle', 'wb'), protocol=cPickle.HIGHEST_PROTOCOL)\n\ndef make_kaldi(filename, offset):\n    joplin = [\n        './joplin/searchlight.xml',\n        './joplin/strenous.xml',\n        './joplin/maple_leaf.xml',\n        './joplin/entertainer.xml',\n        './joplin/syncopations.xml',\n        './joplin/cleopha.xml',\n        './joplin/winners.xml',\n        './joplin/winners_2.xml',\n        './joplin/alabama.xml',\n    ]\n    total = None\n    totalOut = ''\n    count_file = open(filename + '.counts', 'wb')\n    for f in joplin:\n        if offset > 0:\n            thisData = fileToSerialData(f)[:, :-offset]\n            thisData = np.concatenate((np.zeros((88, offset)), thisData), axis=1)\n        else:\n            thisData = fileToSerialData(f)\n        f_safe = ''.join(filter(str.isalnum, f))\n        count_file.write(f_safe + ' ' + str(thisData.shape[1]) + '\\n')\n\n        stringio = cStringIO.StringIO()\n        np.savetxt(stringio, thisData.T, fmt='%.2f')\n        totalOut = totalOut + f_safe + ' [ ' + stringio.getvalue() + ' ]\\n'\n    count_file.close()\n\n    outFile = open(filename + '.txt', 'wb')\n    outFile.write(totalOut)\n    outFile.close()\n\n    scpFile = open(filename + '.feats', 'wb')\n    scpFile.write('scp:{0}.scp\\n'.format(filename))\n    scpFile.close()\n\n    subprocess.call('../kaldi/src/featbin/copy-feats --compress ' +\n        'ark:{0}.txt ark,scp:$PWD/{0}.ark,{0}.scp'\n        .format(filename), shell=True)\n\ndef make_keras():\n    data = {}\n    joplin = [\n        './joplin/searchlight.xml',\n        './joplin/strenous.xml',\n        './joplin/maple_leaf.xml',\n        './joplin/entertainer.xml',\n        './joplin/syncopations.xml',\n        './joplin/cleopha.xml',\n        './joplin/winners.xml',\n        './joplin/winners_2.xml',\n        './joplin/alabama.xml',\n    ]\n    for f in joplin:\n        data[f] = fileToSerialData(f)\n    cPickle.dump(data, open('keras_data.pickle', 'wb'), protocol=cPickle.HIGHEST_PROTOCOL)\n\nif __name__ == '__main__':\n    # make_kaldi('in_feats', 0)\n    make_keras()\n"
  },
  {
    "path": "neural-plugin/DoubleTime.js",
    "content": "//=============================================================================\n//  HalfTime plugin\n//\n//  This plugin created by underquark July 2012\n//  It is a shamelessly modified version of a plugin created by lasconic called \"Retrograde\"\n\n\nfunction init()\n{\n}\n\n\nfunction addChord(cursor, duration)\n{\n      var chord     = new Chord();\n      chord.tickLen = duration;\n      cursor.add(chord);\n      cursor.next();\n      return chord;\n}\n\nfunction addNote(chord, pitch)\n{\n      var note      = new Note();\n      note.pitch    = pitch;\n      chord.addNote(note);\n}\n\nfunction addRest(cursor, duration)\n{\n     var rest = new Rest();\n     rest.tickLen = duration;\n     cursor.add(rest);\n     cursor.next();\n}\n\nfunction run()\n{\n      if (typeof curScore === 'undefined')\t\n            return; \n      var chordArray = [];\n      var cursor       = new Cursor(curScore);\n      var selectionEnd = new Cursor(curScore);\n\n      cursor.goToSelectionStart();\n      selectionEnd.goToSelectionEnd();\n      var startStaff = cursor.staff;\n      var endStaff   = selectionEnd.staff;\n\n      for (var staff = startStaff; staff < endStaff; ++staff)\n      {\n            cursor.goToSelectionStart();\n            cursor.voice = 0;\n            cursor.staff = staff;\n            \n            while (cursor.tick() < selectionEnd.tick())\n            {\n                if (cursor.isChord())\n                {\n                      var chord = cursor.chord();\n                      chordArray.push(chord);\n                } else if (cursor.isRest())\n                {\n                      var rest = cursor.rest();                    \n                      chordArray.push(rest.tickLen);\n                }\n                cursor.next();\n            }    \n      }\n            \n      var score   = new Score();\n      score.name  = \"DoubleTime\";\n      score.title = \"DoubleTime\";\n\t   score.appendPart();\n      score.keysig = curScore.keysig;\n\t\tscore.appendMeasures(200);\n      var newCursor = new Cursor(score);\n      newCursor.staff = 0;\n      newCursor.voice = 0;\n      newCursor.rewind();\n      \n      for (var i = 0; i<chordArray.length; i++)\n      {\n            var chord = chordArray[i];\n            if (typeof chord === 'object')\n            {\n                var newChord = addChord(newCursor, chord.tickLen * 2);\n                var n     = chord.notes;\n                for (var j = 0; j < n; j++)\n\t\t\t\t\t{\n                      var note = chord.note(j);\n                      addNote(newChord, note.pitch);\n               }\n            } else\n            {\n                //add rest if it's not a chord\n                var tickLen = chord;\n                addRest(newCursor, tickLen * 2);\n            }\n      }\n\n}\n\nvar mscorePlugin =\n{\n      menu: 'Plugins.DoubleTime',\n      init: init,\n      run:  run\n}\n\nmscorePlugin;\n"
  },
  {
    "path": "neural-plugin/neural-plugin.js",
    "content": "//=============================================================================\n//  MuseScore\n//  Linux Music Score Editor\n//  $Id:$\n//\n//  Test plugin\n//\n//  Copyright (C)2009 Werner Schweer and others\n//\n//  This program is free software; you can redistribute it and/or modify\n//  it under the terms of the GNU General Public License version 2.\n//\n//  This program is distributed in the hope that it will be useful,\n//  but WITHOUT ANY WARRANTY; without even the implied warranty of\n//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n//  GNU General Public License for more details.\n//\n//  You should have received a copy of the GNU General Public License\n//  along with this program; if not, write to the Free Software\n//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n//=============================================================================\n\n\n//\n// error handling is mostly omitted!\n//\n\n//---------------------------------------------------------\n//    init\n//---------------------------------------------------------\n\nfunction init() {\n    };\n\nvar form;\nvar projectRoot = 'C:\\\\Users\\\\Felix\\\\Documents\\\\21M.359\\\\Final Project\\\\';\nvar tempLoc = 'C:\\\\Users\\\\Felix\\\\Documents\\\\21M.359\\\\Final Project\\\\temp\\\\';\n\nfunction copyChord(oldChord) {\n    var chord = new Chord();\n    chord.tickLen = oldChord.tickLen;\n    for (var i = 0; i < oldChord.notes; i++) {\n        var note = new Note();\n        note.pitch = oldChord.note(i).pitch;\n        note.tied = oldChord.note(i).tied;\n        chord.addNote(note);\n    }\n    return chord\n}\n\nfunction copyThing(source, target) {\n    if (source.isChord()) {\n        target.add(copyChord(source.chord()));\n        target.next();\n    } else if (source.isRest()) {\n        var newRest = new Rest();\n        newRest.tickLen = source.rest().tickLen;\n        target.add(newRest);\n        target.next();\n    }\n    source.next();\n}\n\nfunction run() {\n    // Get user settings via dialog box.\n    var loader = new QUiLoader(null);\n    var file   = new QFile(pluginPath + \"/neural-plugin.ui\");\n    file.open(QIODevice.OpenMode(QIODevice.ReadOnly, QIODevice.Text));\n    form = loader.load(file, null);\n    form.buttonBox.accepted.connect(accept);\n    form.learnRateBox.setText(\"0.05\");\n    form.nIterBox.setText(\"200\");\n    form.thresholdBox.setText(\"0.6\");\n    form.show();\n};\n\n//---------------------------------------------------------\n//    accept\n//    called when user presses \"Accept\" button\n//---------------------------------------------------------\n\nfunction accept() {\n    \n    // Read off some notes, starting from where the cursor is.\n    // Set up cursors for reading the score.\n    var origScore = curScore;\n    var cursor = new Cursor(origScore);\n    var selectionEnd = new Cursor(origScore);\n    selectionEnd.goToSelectionEnd();\n    cursor.goToSelectionStart();\n\n    var startStaff = cursor.staff;\n    var endStaff = selectionEnd.staff;\n    cursor.voice = 0;\n    var tempScore = new Score();\n    tempScore.appendPart();\n    tempScore.appendPart();\n    tempScore.appendPart();\n    tempScore.appendMeasures(8);  // Fix me.\n    tempScore.keysig = origScore.keysig;\n    var writeCursor = new Cursor(tempScore);\n    writeCursor.staff = 0;\n    writeCursor.voice = 0;\n    writeCursor.rewind();\n\n    // Right now, we read the first voice from each staff.\n    // Maybe change this in the future to multi-voice?\n    for (var staff = startStaff; staff < endStaff; staff++) {\n        cursor.goToSelectionStart();\n        cursor.staff = staff;\n        writeCursor.rewind();\n        while (cursor.tick() < selectionEnd.tick()) {\n            copyThing(cursor, writeCursor);\n        }\n        // tempScore.appendPart()\n        writeCursor.staff += 1;\n        writeCursor.voice = 0;\n    }\n    // Save, load, save.  Because musescore is buggy and can't save xml directly.\n    tempScore.save(tempLoc + 'test.mscz', 'mscz')\n    tempScore.close()\n\n    tempScore = new Score();\n    tempScore.load(tempLoc + 'test.mscz')\n    tempScore.save(tempLoc + 'test.xml', 'xml')\n    tempScore.close()\n\n    // Run the neural net via qprocess.\n    var process = new QProcess();\n    process.setStandardOutputFile(tempLoc + \"stdout.txt\");\n    process.setStandardErrorFile(tempLoc + \"stderr.txt\");\n    var args = new Array();\n    args[0] = projectRoot + 'DBN.py';\n    args[1] = tempLoc + 'test.xml';\n    args[2] = form.learnRateBox.text;\n    args[3] = form.nIterBox.text;\n    args[4] = form.thresholdBox.text;\n    process.start('python', args);\n    process.waitForStarted();\n    process.waitForFinished();\n\n    // Load the result.\n    tempScore = new Score();\n    tempScore.load(projectRoot + 'test.midi');\n    tempScore.save(projectRoot + 'test.mscz', 'mscz');\n    tempScore.close();\n    tempScore = new Score();\n    tempScore.load(projectRoot + 'test.mscz');\n    cursor.goToSelectionStart();\n    while (origScore.staves < 2) {\n        origScore.appendPart();\n    }\n    var loader = new QUiLoader(null);\n    var file   = new QFile(pluginPath + \"/output-window.ui\");\n    file.open(QIODevice.OpenMode(QIODevice.ReadOnly, QIODevice.Text));\n    outForm = loader.load(file, null);\n    var scoreFile = new QFile(tempLoc + \"stdout.txt\");\n    scoreFile.open(QIODevice.OpenMode(QIODevice.ReadOnly, QIODevice.Text));\n    outForm.textOut.setText(scoreFile.readAll());\n    outForm.show();\n}\n\nvar mscorePlugin = {\n    menu: 'Plugins.Neural Autocomplete',\n    init: init,\n    run:  run\n    };\n\nmscorePlugin;\n\n"
  },
  {
    "path": "neural-plugin/neural-plugin.ui",
    "content": "<ui version=\"4.0\" >\n <class>Dialog</class>\n <widget class=\"QDialog\" name=\"Dialog\" >\n  <property name=\"geometry\" >\n   <rect>\n    <x>0</x>\n    <y>0</y>\n    <width>363</width>\n    <height>300</height>\n   </rect>\n  </property>\n  <property name=\"windowTitle\" >\n   <string>Options</string>\n  </property>\n  <layout class=\"QVBoxLayout\" name=\"verticalLayout\" >\n\n   <item>\n    <widget class=\"QLabel\" name=\"label\" >\n     <property name=\"text\" >\n      <string>Learning rate</string>\n     </property>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QLineEdit\" name=\"learnRateBox\">\n    </widget>\n   </item>\n\n   <item>\n    <widget class=\"QLabel\" name=\"label\" >\n     <property name=\"text\" >\n      <string>Number of iterations</string>\n     </property>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QLineEdit\" name=\"nIterBox\">\n    </widget>\n   </item>\n\n   <item>\n    <widget class=\"QLabel\" name=\"label\" >\n     <property name=\"text\" >\n      <string>Note threshold (lower = more notes)</string>\n     </property>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QLineEdit\" name=\"thresholdBox\">\n    </widget>\n   </item>\n\n   <item>\n    <widget class=\"QDialogButtonBox\" name=\"buttonBox\" >\n     <property name=\"standardButtons\" >\n      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>\n     </property>\n    </widget>\n   </item>\n  </layout>\n </widget>\n <resources/>\n <connections>\n  <connection>\n   <sender>buttonBox</sender>\n   <signal>accepted()</signal>\n   <receiver>Dialog</receiver>\n   <slot>accept()</slot>\n  </connection>\n  <connection>\n   <sender>buttonBox</sender>\n   <signal>rejected()</signal>\n   <receiver>Dialog</receiver>\n   <slot>reject()</slot>\n  </connection>\n </connections>\n</ui>\n"
  },
  {
    "path": "neural-plugin/output-window.ui",
    "content": "<ui version=\"4.0\" >\n <class>Dialog</class>\n <widget class=\"QDialog\" name=\"Dialog\" >\n  <property name=\"geometry\" >\n   <rect>\n    <x>0</x>\n    <y>0</y>\n    <width>363</width>\n    <height>300</height>\n   </rect>\n  </property>\n  <property name=\"windowTitle\" >\n   <string>Error rate convergence</string>\n  </property>\n  <layout class=\"QVBoxLayout\" name=\"verticalLayout\" >\n   <item>\n    <widget class=\"QTextEdit\" name=\"textOut\">\n    </widget>\n   </item>\n\n  </layout>\n </widget>\n <resources/>\n <connections>\n </connections>\n</ui>\n"
  }
]